We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd6f0b commit a8d6e64Copy full SHA for a8d6e64
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