summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-04 09:58:36 -0500
committerJeff Carr <[email protected]>2025-09-04 09:58:36 -0500
commit7697ab186a6af77e4bf08d60ebae53228cbcab60 (patch)
treee7901339bde73159febeb916e90fce1dedae4267 /main.go
parentd2010b859a097dafb27568af4fbff269540d8b12 (diff)
add doCheckout() back
Diffstat (limited to 'main.go')
-rw-r--r--main.go14
1 files changed, 6 insertions, 8 deletions
diff --git a/main.go b/main.go
index f60374c..5152f1e 100644
--- a/main.go
+++ b/main.go
@@ -90,14 +90,12 @@ func main() {
okExit("")
}
- /*
- if argv.Checkout != nil {
- if err := doCheckout(); err != nil {
- badExit(err)
- }
- okExit("")
+ if argv.Checkout != nil {
+ if err := doCheckout(); err != nil {
+ badExit(err)
}
- */
+ okExit("")
+ }
if argv.Build != "" {
if err := doBuild(); err != nil {
@@ -163,7 +161,7 @@ func main() {
}
okExit("master merge ok")
}
- badExit(fmt.Errorf("merge what?"))
+ badExit(fmt.Errorf("You must choose which branch to merge to (devel or master)"))
}
if argv.Pull != nil {