diff options
| author | Jeff Carr <[email protected]> | 2025-10-08 01:40:28 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-08 01:40:28 -0500 |
| commit | 04661cd2056843d829085eb36b32d061f57275cb (patch) | |
| tree | d1a24ec929afefe525ca4417d4d98c63c660f4e8 /main.go | |
| parent | bbcc0bf56d478e4522d29478d872cc10407eae9c (diff) | |
make easy to use
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 { |
