Merge pull request #871 from ALX99/main

fix: correct os.Exit code from -1 to 1 in main.go
This commit is contained in:
Eugen Eisler 2024-08-24 16:46:17 +02:00 committed by GitHub
commit 21007b7e93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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