mirror of
https://github.com/aykhans/dodo.git
synced 2025-07-05 09:45:56 +00:00
🔨 Update PrintErrAndExit function to exit with code 1 instead of 0
This commit is contained in:
@ -48,7 +48,7 @@ func PrintErr(err error) {
|
||||
func PrintErrAndExit(err error) {
|
||||
if err != nil {
|
||||
PrintErr(err)
|
||||
os.Exit(0)
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user