Skip to content

Commit

Permalink
chore: fix commands exit code (#263)
Browse files Browse the repository at this point in the history
Signed-off-by: Matheus Pimenta <[email protected]>
  • Loading branch information
matheuscscp authored Nov 17, 2024
1 parent ede4c70 commit ecd68d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func main() {
"Log level. Accepted values: "+acceptedLogLevels)

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

Expand Down

0 comments on commit ecd68d5

Please sign in to comment.