summaryrefslogtreecommitdiff
path: root/doGit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 05:32:48 -0500
committerJeff Carr <[email protected]>2025-10-17 05:32:48 -0500
commit26cf2f20259a89fbba686d259b82d554ac24ec84 (patch)
tree70c67706c160f6bfc0a26b489f2fff06f9b1c057 /doGit.go
parent8bc1bb9b307062735105edf2fdcd691404cf84c8 (diff)
try out argv as the name. is this weird?v0.1.45
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"})