diff options
| author | Jeff Carr <[email protected]> | 2024-12-11 13:51:06 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-11 13:51:06 -0600 |
| commit | fba217e92ae1c6cce2faf04f639327f19ce0a5cf (patch) | |
| tree | 08f82e377d74e8ee8d57d228437e302fb8eacd58 | |
| parent | 875435bc025e3b07d2f4a3fed50e78b9be58390a (diff) | |
minor
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | main.go | 15 |
2 files changed, 12 insertions, 7 deletions
@@ -1,8 +1,8 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%Y.%m.%d_%H%M) -run: goimports build - ./go-clean --version +run: goimports install + go-clean --version vet: @GO111MODULE=off go vet @@ -69,14 +69,19 @@ func main() { badExit(err) } + // try to trim junk + if err := forge.TrimGoSum(check); err != nil { + badExit(err) + } + // check go.sum file - if err := forge.CleanGoDepsCheckOk(check); err == nil { - log.Info("forge.FinalGoDepsCheck() worked :", check.GoPath) - okExit(check.GoPath + " go.sum seems clean") - } else { + if err := forge.CleanGoDepsCheckOk(check); err != nil { log.Info("forge.FinalGoDepsCheck() failed. boo. :", check.GoPath) badExit(err) } + + log.Info("forge.FinalGoDepsCheck() worked :", check.GoPath) + okExit(check.GoPath + " go.sum seems clean") } func findPwdRepo() *gitpb.Repo { @@ -104,6 +109,6 @@ func okExit(thing string) { } func badExit(err error) { - log.Info("Finished go-clean with error", err, forge.GetGoSrc()) + log.Info("go-clean failed: ", err, forge.GetGoSrc()) os.Exit(-1) } |
