Compare commits

..

No commits in common. "master" and "v0.0.93" have entirely different histories.

1 changed files with 6 additions and 2 deletions

View File

@ -43,7 +43,11 @@ func main() {
me.forge = forgepb.Init()
me.machine, _ = zoopb.InitMachine()
me.machine = new(zoopb.Machine)
if err := me.machine.ConfigLoad(); err != nil {
log.Info("zoopb.ConfigLoad() failed", err)
}
me.machine.InitWit()
if argv.Clone != nil {
if argv.RepoMap != "" {
@ -134,7 +138,7 @@ func okExit(thing string) {
}
func badExit(err error) {
log.Info("go-clean failed: ", err, me.forge.Config.ReposDir)
log.Info("go-clean failed: ", err, me.forge.GetGoSrc())
os.Exit(-1)
}