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 f1f6f9b commit ea3e5c8Copy full SHA for ea3e5c8
go/extractor/configurebaseline/configurebaseline.go
@@ -33,7 +33,8 @@ func GetConfigBaselineAsJSON(rootDir string) ([]byte, error) {
33
} else {
34
filepath.WalkDir(rootDir, func(dirPath string, d fs.DirEntry, err error) error {
35
if err != nil {
36
- // Mask any unreadable paths.
+ // Ignore any unreadable paths -- if this script can't see it, very likely
37
+ // it will not be extracted either.
38
return nil
39
}
40
if isGolangVendorDirectory(dirPath) {
0 commit comments