🔨 Update PrintErrAndExit function to exit with code 1 instead of 0

This commit is contained in:
Aykhan Shahsuvarov 2024-07-05 02:04:55 +04:00
parent f56d624cf1
commit 4635ad6968

View File

@ -48,7 +48,7 @@ func PrintErr(err error) {
func PrintErrAndExit(err error) { func PrintErrAndExit(err error) {
if err != nil { if err != nil {
PrintErr(err) PrintErr(err)
os.Exit(0) os.Exit(1)
} }
} }