From d4239a55db2e00c6a4a8a6ec35e07096b19542cb Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 27 Oct 2020 15:12:50 +0100 Subject: Error codes should be in the range of 0 to 125 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } } -- cgit v1.2.3