Error codes should be in the range of 0 to 125

This commit is contained in:
Christian Muehlhaeuser 2020-10-27 15:12:50 +01:00
parent 7a9452dbff
commit d4239a55db

View file

@ -297,7 +297,7 @@ func runTUI(stashedOnly bool) error {
func main() {
if err := rootCmd.Execute(); err != nil {
os.Exit(-1)
os.Exit(1)
}
}