diff options
| author | Jeff Carr <[email protected]> | 2025-10-10 08:05:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-10 08:05:50 -0500 |
| commit | 85d29ad6835b83f5bd52eb6be316569aeefae71b (patch) | |
| tree | 14a01821d2ca3e95e38d27274973b01ea9f1bcb5 /doCommit.go | |
| parent | cf253dc0fed3d0950e1ef41811ab88cd4167b913 (diff) | |
lots of fixes to the overall behavior
Diffstat (limited to 'doCommit.go')
| -rw-r--r-- | doCommit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doCommit.go b/doCommit.go index 8f041b3..4a2267c 100644 --- a/doCommit.go +++ b/doCommit.go @@ -19,7 +19,7 @@ func doCommit() (string, error) { s := log.Sprintf("%s [git commit --all]", repo.GetNamespace()) setTerminalTitle(s) if err := doCommitRepo(repo); err != nil { - badExit(err) + return "failed to commit", err } newpatches = true } |
