dump errors that were never tested
This commit is contained in:
parent
891017f2f9
commit
9c7572ca45
|
@ -64,24 +64,28 @@ func doStrict(repo *gitpb.Repo) error {
|
|||
return err
|
||||
}
|
||||
|
||||
if repo.Exists("go.mod") {
|
||||
if !repo.Exists("go.mod") {
|
||||
// well, if go mod init fails, then we will just error since 'go mod init' almost never fails
|
||||
return err
|
||||
}
|
||||
|
||||
if _, err := repo.RunQuiet([]string{"go", "mod", "tidy", "-go=" + golangVersion}); err == nil {
|
||||
if _, err := repo.RunQuiet([]string{"go", "mod", "tidy", "-go=" + golangVersion}); err != nil {
|
||||
// I guess the thing to do, if go mod tidy fails, is to just leave the repo alone
|
||||
// it's either primitive or could be a go support project but not in go
|
||||
return nil
|
||||
}
|
||||
|
||||
// the first time, it'll attempt to fix some stuff
|
||||
log.Info("Running: updateToNewestReleases()")
|
||||
cleanGoDepsCheckOk(repo)
|
||||
|
||||
// try to trim junk
|
||||
log.Info("Running: trimGoSum()")
|
||||
if err := trimGoSum(repo); err != nil {
|
||||
log.Info(repo.GetGoPath(), "trimGoSum() failed", err)
|
||||
return err
|
||||
}
|
||||
|
||||
if repo.ParseGoSum() {
|
||||
log.Info(repo.GetGoPath(), "ParseGoSum() ok")
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue