Skip to content

Commit

Permalink
Merge pull request #871 from ALX99/main
Browse files Browse the repository at this point in the history
fix: correct os.Exit code from -1 to 1 in main.go
  • Loading branch information
eugeis authored Aug 24, 2024
2 parents 9a0444d + e8d5fba commit 21007b7
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 @@ -11,6 +11,6 @@ func main() {
_, err := cli.Cli()
if err != nil {
fmt.Printf("%s\n", err)
os.Exit(-1)
os.Exit(1)
}
}

0 comments on commit 21007b7

Please sign in to comment.