summaryrefslogtreecommitdiff
path: root/bash.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-03-28 08:53:51 -0500
committerJeff Carr <[email protected]>2023-03-28 08:53:51 -0500
commit5645231c498048dd4a1e4b097437a6f4c63cd022 (patch)
treeb178242225970e6ed1dceb758b8d9b5e4e231d6e /bash.go
parent76699a310278d5b52613f0a59a664c9213fa6668 (diff)
remove places the app could exit
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'bash.go')
-rw-r--r--bash.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/bash.go b/bash.go
index 6daacec..2f4b8ca 100644
--- a/bash.go
+++ b/bash.go
@@ -53,6 +53,7 @@ func test() error {
func mainBash() {
if err := test(); err != nil {
+ log(logError, "exit in mainBash()")
exit(err)
}
}