Skip to content

Commit d71753a

Browse files
committed
Adde .vscode to the ignored spurious folders
Fix #171 Signed-off-by: Cristian Maglie <[email protected]>
1 parent 8bbac23 commit d71753a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/arduino.cc/builder/utils/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func FilterFilesWithExtension(extension string) filterFiles {
148148
}
149149
}
150150

151-
var SOURCE_CONTROL_FOLDERS = map[string]bool{"CVS": true, "RCS": true, ".git": true, ".github": true, ".svn": true, ".hg": true, ".bzr": true}
151+
var SOURCE_CONTROL_FOLDERS = map[string]bool{"CVS": true, "RCS": true, ".git": true, ".github": true, ".svn": true, ".hg": true, ".bzr": true, ".vscode": true}
152152

153153
func IsSCCSOrHiddenFile(file os.FileInfo) bool {
154154
return IsSCCSFile(file) || IsHiddenFile(file)

0 commit comments

Comments
 (0)