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 bf7795e commit fe4fc1eCopy full SHA for fe4fc1e
plugins/gnostic-analyze/summarize/main.go
@@ -32,6 +32,9 @@ var stats []statistics.DocumentStatistics
32
33
// walker is called for each summary file found.
34
func walker(p string, info os.FileInfo, err error) error {
35
+ if err != nil {
36
+ return err
37
+ }
38
basename := path.Base(p)
39
if basename != "summary.json" {
40
return nil
0 commit comments