8000 added .pioenvs and .piolibdeps to ignore list · arduino/arduino-builder@c304f32 · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c304f32

Browse files
authored
added .pioenvs and .piolibdeps to ignore list
1 parent d3bf497 commit c304f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ func FilterFiles() filterFiles {
152152
}
153153
}
154154

155-
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}
155+
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, ".pioenvs": true, ".piolibdeps": true}
156156

157157
func IsSCCSOrHiddenFile(file os.FileInfo) bool {
158158
return IsSCCSFile(file) || IsHiddenFile(file)

0 commit comments

Comments
 (0)
0