diff options
| author | Jeff Carr <[email protected]> | 2025-08-19 22:22:33 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-19 22:22:33 -0500 |
| commit | cf83bbf6ace4e17094226cf0b172a2525ca2c13c (patch) | |
| tree | 4c289ca4a9746a144201067a0bc9e528d0042fc1 /doCommit.go | |
| parent | 47cd26fbab64cba0fdcc5c23d45c7472aa6304bc (diff) | |
more cleanups on usefulness
Diffstat (limited to 'doCommit.go')
| -rw-r--r-- | doCommit.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doCommit.go b/doCommit.go index 3c4c7db..d7b9196 100644 --- a/doCommit.go +++ b/doCommit.go @@ -73,6 +73,11 @@ func doCommit() { if err := shell.ExecCheck([]string{"git", "commit", "--all"}); err != nil { badExit(err) } + + _, err := me.forge.SubmitDevelPatchSet("forge auto commit") + if err != nil { + badExit(err) + } log.Info("git commit ok. forge done") } |
