summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Muehlhaeuser <muesli@gmail.com>2020-10-27 15:12:50 +0100
committerChristian Muehlhaeuser <muesli@gmail.com>2020-10-27 15:13:20 +0100
commitd4239a55db2e00c6a4a8a6ec35e07096b19542cb (patch)
tree4c219a6c990b6524a7ca92ef1933c785137fa0b5
parent7a9452dbfff44f3b94148eb526f0efa4267f3f79 (diff)
Error codes should be in the range of 0 to 125v1.1.0
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 4999ea8..9e6b402 100644
--- a/main.go
+++ b/main.go
@@ -297,7 +297,7 @@ func runTUI(stashedOnly bool) error {
func main() {
if err := rootCmd.Execute(); err != nil {
- os.Exit(-1)
+ os.Exit(1)
}
}