summaryrefslogtreecommitdiff
path: root/doGit.go
diff options
context:
space:
mode:
Diffstat (limited to 'doGit.go')
-rw-r--r--doGit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doGit.go b/doGit.go
index 290c4c6..1bd2cd6 100644
--- a/doGit.go
+++ b/doGit.go
@@ -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"})