31 lines
560 B
Go
31 lines
560 B
Go
package repostatus
|
|
|
|
// does processing on the go.mod and go.sum files
|
|
|
|
import (
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
// for now, even check cmd.Exit
|
|
func (rs *RepoStatus) strictRun(cmd []string) (bool, error) {
|
|
r := rs.Run(cmd)
|
|
if r.Error != nil {
|
|
log.Log(REPO, "go mod init failed err:", r.Error)
|
|
return false, r.Error
|
|
}
|
|
if r.Exit != 0 {
|
|
log.Log(REPO, "go mod init exit =", r.Exit)
|
|
return false, r.Error
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
/*
|
|
func (rs *RepoStatus) IsReleased() bool {
|
|
if rs.GetTargetVersion() == rs.GetCurrentVersion() {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
*/
|