summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 20:04:23 -0500
committerJeff Carr <[email protected]>2025-10-05 20:04:23 -0500
commit50fea58cf96abaa3f8c28c6ffb67630d6dd7829e (patch)
treecc1d2493ca7827f6cc4a57907b5be0fa19b5f3f0 /main.go
parent0d4dfc597ae17b072bd1b8ff971a30cd926dc556 (diff)
made things to try to delete user branches
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.go b/main.go
index 3c70d78..a9f60e0 100644
--- a/main.go
+++ b/main.go
@@ -62,6 +62,14 @@ func main() {
okExit("")
}
+ if argv.Dev != nil {
+ s, err := doDev()
+ if err != nil {
+ me.sh.BadExit(s, err)
+ }
+ me.sh.GoodExit(s)
+ }
+
if argv.Commit != nil {
doCommit()
okExit("")