We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 233a6b0 commit f22ec54Copy full SHA for f22ec54
path_helper.go
@@ -62,6 +62,9 @@ func (p *PathHelper) gatherPathDirs() error {
62
63
for _, directory := range directories {
64
p.logger("\t- '%s'", directory)
65
+ if strings.HasPrefix(directory, "#") {
66
+ continue
67
+ }
68
if p.config.SkipNotFound && !dirExists(directory) {
69
p.logger("[WARN] Directory '%s' (%s) is not found! Skipping.", directory, file)
70
continue
0 commit comments