Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 23f0204

Browse files
committedSep 22, 2019
style
1 parent 7186d73 commit 23f0204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎arduino/builder/sketch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func SimpleLocalWalk(root string, walkFn func(path string, info os.FileInfo, err
7474
files, err := ioutil.ReadDir(root)
7575
if err == nil {
7676
for _, file := range files {
77-
err = SimpleLocalWalk(root + string(os.PathSeparator) + file.Name(), walkFn)
77+
err = SimpleLocalWalk(root+string(os.PathSeparator)+file.Name(), walkFn)
7878
if err == filepath.SkipDir {
7979
return nil
8080
}

0 commit comments

Comments
 (0)
Please sign in to comment.