summaryrefslogtreecommitdiff
path: root/doCommit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-04-29 17:49:05 -0500
committerJeff Carr <[email protected]>2025-04-29 17:49:05 -0500
commitf061bf9730f5243633eb70ce4553577c4ae9e2ef (patch)
tree25481649716bd90ea4f917bca6d3652390fc0a07 /doCommit.go
parent6d62858d69e908bc916ff71a52f4e01a3869e890 (diff)
add commit --submit=false option
Diffstat (limited to 'doCommit.go')
-rw-r--r--doCommit.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/doCommit.go b/doCommit.go
index 4841a1c..b86ba31 100644
--- a/doCommit.go
+++ b/doCommit.go
@@ -24,6 +24,9 @@ func doCommit() {
}
newpatches = true
}
+ if !argv.Commit.Submit {
+ okExit("")
+ }
if newpatches {
// if there are enw patches, autocommit them
_, err := me.forge.SubmitDevelPatchSet("forge auto commit")