Merge pull request #871 from ALX99/main

fix: correct os.Exit code from -1 to 1 in main.go
pull/852/head
Eugen Eisler 4 weeks ago committed by GitHub
commit 21007b7e93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -11,6 +11,6 @@ func main() {
_, err := cli.Cli()
if err != nil {
fmt.Printf("%s\n", err)
os.Exit(-1)
os.Exit(1)
}
}

Loading…
Cancel
Save