diff options
| -rw-r--r-- | main.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -58,8 +58,8 @@ func main() { } else { trycount += 1 log.Info("actually run: git pull:", repo.Status.Path()) - if err := shell.PwdRun(repo.Status.Path(), pull); err != nil { - log.Info("git pull error:", err) + if result := repo.Status.Run(pull); result.Error != nil { + log.Info("git pull error:", result.Error) errcount += 1 } } @@ -123,7 +123,7 @@ func main() { if !argv.NoWork { log.Info("Creating", wdir+"/go.work") rv.MakeGoWork() - shell.RunPath(wdir, []string{"go", "work", "use"}) + shell.PathRun(wdir, []string{"go", "work", "use"}) } } @@ -153,7 +153,7 @@ func findWorkFile() (string, error) { if _, err := os.Stat("go.work"); err == nil { return newpwd, nil } - shell.RunPath(newpwd, []string{"go", "work", "init"}) + shell.PathRun(newpwd, []string{"go", "work", "init"}) if shell.Exists("go.work") { return newpwd, nil } |
