diff options
Diffstat (limited to 'doGit.go')
| -rw-r--r-- | doGit.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -90,7 +90,7 @@ func doGit() (string, error) { } else { log.Info("not installing") } - me.sh.GoodExit("git who should be installed") + me.argv.GoodExit("git who should be installed") } cmd := []string{"git", "who", "-l", "."} shell.RunVerbose(cmd) @@ -186,7 +186,7 @@ func doPush(wpath string) { if err := repo.GitCommit(); err != nil { msg := fmt.Sprintf("repo.GitCommit() %s", repo.FullPath) - me.sh.BadExit(msg, err) + me.argv.BadExit(msg, err) } repo.RunRealtime([]string{"git", "push"}) |
