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 eb29d0a commit 2dadf65Copy full SHA for 2dadf65
module/go_mod/goModTidy.go
@@ -5,6 +5,7 @@ import (
5
"context"
6
"errors"
7
"github.com/murphysecurity/murphysec/infra/logctx"
8
+ "github.com/murphysecurity/murphysec/scanerr"
9
"go.uber.org/zap"
10
"os"
11
"os/exec"
@@ -55,6 +56,10 @@ again:
55
56
cmd.Wait()
57
58
if againBol {
59
+ scanerr.Add(ctx, scanerr.Param{
60
+ Kind: "auto_build_error",
61
+ Content: stdErr.String(),
62
+ })
63
return errors.New(stdErr.String())
64
}
65
if stdErr.Len() > 0 {
0 commit comments