summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 22:47:53 -0600
committerJeff Carr <[email protected]>2025-01-29 12:18:16 -0600
commit345c1ee9b1a3d5a55fef53edb2f3a6d89aaf2fcd (patch)
treee49f21b69ecc672041c7aa5c63b747e5c5bd8c2c /main.go
parentbbf5f79acb6d17239a492effb4e2cdb15ef20579 (diff)
move submit patchset to forgepb
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.go b/main.go
index d5bde4e..97907db 100644
--- a/main.go
+++ b/main.go
@@ -150,7 +150,10 @@ func main() {
if argv.Patch != nil {
if argv.Patch.Submit != "" {
- doSubmit(argv.Patch.Submit)
+ _, err := me.forge.SubmitDevelPatchSet(argv.Patch.Submit)
+ if err != nil {
+ badExit(err)
+ }
okExit("")
}