summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-08 01:40:28 -0500
committerJeff Carr <[email protected]>2025-10-08 01:40:28 -0500
commit04661cd2056843d829085eb36b32d061f57275cb (patch)
treed1a24ec929afefe525ca4417d4d98c63c660f4e8 /main.go
parentbbcc0bf56d478e4522d29478d872cc10407eae9c (diff)
make easy to use
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/main.go b/main.go
index f8a30c9..8ec2446 100644
--- a/main.go
+++ b/main.go
@@ -43,8 +43,11 @@ func main() {
}
if argv.Git != nil {
- doGit()
- me.sh.GoodExit("")
+ s, err := doGit()
+ if err != nil {
+ me.sh.BadExit(s, err)
+ }
+ me.sh.GoodExit(s)
}
if argv.Clone != nil {