diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 05:32:48 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 05:32:48 -0500 |
| commit | 26cf2f20259a89fbba686d259b82d554ac24ec84 (patch) | |
| tree | 70c67706c160f6bfc0a26b489f2fff06f9b1c057 /doGit.go | |
| parent | 8bc1bb9b307062735105edf2fdcd691404cf84c8 (diff) | |
try out argv as the name. is this weird?v0.1.45
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"}) |
