Compare commits
No commits in common. "master" and "v0.0.93" have entirely different histories.
8
main.go
8
main.go
|
@ -43,7 +43,11 @@ func main() {
|
||||||
|
|
||||||
me.forge = forgepb.Init()
|
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.Clone != nil {
|
||||||
if argv.RepoMap != "" {
|
if argv.RepoMap != "" {
|
||||||
|
@ -134,7 +138,7 @@ func okExit(thing string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func badExit(err error) {
|
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)
|
os.Exit(-1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue