minor
This commit is contained in:
parent
ffecf5ea0a
commit
2f1d7ac1f2
|
@ -84,7 +84,7 @@ func findNext() bool {
|
||||||
// don't check godepsNew, but check to make sure go mod tidy actually ran without error
|
// don't check godepsNew, but check to make sure go mod tidy actually ran without error
|
||||||
os.Unsetenv("GO111MODULE")
|
os.Unsetenv("GO111MODULE")
|
||||||
cmd := []string{"go", "mod", "tidy"}
|
cmd := []string{"go", "mod", "tidy"}
|
||||||
_, err := check.RunVerbose(cmd)
|
err := check.RunVerbose(cmd)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Info("go mod tidy failed. this go package needs to be examined by hand as it doesn't appear to be primitive")
|
log.Info("go mod tidy failed. this go package needs to be examined by hand as it doesn't appear to be primitive")
|
||||||
os.Exit(-1)
|
os.Exit(-1)
|
||||||
|
|
Loading…
Reference in New Issue