Skip to content

Commit

Permalink
Clarify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
smowton committed Aug 19, 2024
1 parent bcd6f0b commit a8d6e64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/extractor/configurebaseline/configurebaseline.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ func GetConfigBaselineAsJSON(rootDir string) ([]byte, error) {
} else {
filepath.WalkDir(rootDir, func(dirPath string, d fs.DirEntry, err error) error {
if err != nil {
// Mask any unreadable paths.
// Ignore any unreadable paths -- if this script can't see it, very likely
// it will not be extracted either.
return nil
}
if isGolangVendorDirectory(dirPath) {
Expand Down

0 comments on commit a8d6e64

Please sign in to comment.