Skip to content

Commit 1a43e72

Browse files
committed
Add .settings to the ignored spurious folders
1 parent ed140f4 commit 1a43e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arduino.cc/builder/utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func FilterFiles() filterFiles {
162162
}
163163
}
164164

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

167167
func IsSCCSOrHiddenFile(file os.FileInfo) bool {
168168
return IsSCCSFile(file) || IsHiddenFile(file)

0 commit comments

Comments
 (0)