File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 16
16
package gosec
17
17
18
18
import (
19
+ "errors"
19
20
"fmt"
20
21
"go/ast"
21
22
"go/build"
@@ -543,7 +544,8 @@ func (gosec *Analyzer) ParseErrors(pkg *packages.Package) error {
543
544
// AppendError appends an error to the file errors
544
545
func (gosec * Analyzer ) AppendError (file string , err error ) {
545
546
// Do not report the error for empty packages (e.g. files excluded from build with a tag)
546
- if strings .Contains (err .Error (), "no buildable Go source files in" ) {
547
+ var noGoErr * build.NoGoError
548
+ if errors .As (err , & noGoErr ) {
547
549
return
548
550
}
549
551
errors := make ([]Error , 0 )
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ package gosec_test
16
16
17
17
import (
18
18
"errors"
19
+ "go/build"
19
20
"log"
20
21
"regexp"
21
22
"strings"
@@ -1311,7 +1312,10 @@ var _ = Describe("Analyzer", func() {
1311
1312
1312
1313
Context ("when appending errors" , func () {
1313
1314
It ("should skip error for non-buildable packages" , func () {
1314
- analyzer .AppendError ("test" , errors .New (`loading file from package "pkg/test": no buildable Go source files in pkg/test` ))
1315
+ err := & build.NoGoError {
1316
+ Dir : "pkg/test" ,
1317
+ }
1318
+ analyzer .AppendError ("test" , err )
1315
1319
_ , _ , errors := analyzer .Report ()
1316
1320
Expect (errors ).To (BeEmpty ())
1317
1321
})
You can’t perform that action at this time.
0 commit comments