Skip to content

Commit

Permalink
Error codes should be in the range of 0 to 125
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Oct 27, 2020
1 parent 7a9452d commit d4239a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func runTUI(stashedOnly bool) error {

func main() {
if err := rootCmd.Execute(); err != nil {
os.Exit(-1)
os.Exit(1)
}
}

Expand Down

0 comments on commit d4239a5

Please sign in to comment.