From 22542f98640c67e57b29207723257b3279b658bf Mon Sep 17 00:00:00 2001 From: mahlon Date: Sat, 1 Jul 2023 03:34:23 +0000 Subject: [PATCH] Fix qmail deferral exit code. FossilOrigin-Name: a133d5760f08b983c4543f2a51426079e15a1394c69ea5195f08b7bd79e3866c --- src/lib/util.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util.nim b/src/lib/util.nim index a7e184e..1a79940 100644 --- a/src/lib/util.nim +++ b/src/lib/util.nim @@ -148,7 +148,7 @@ proc hl( msg: string, fg: ForegroundColor, bright=false ): string = proc deferral*( msg: string ) = ## Exit with Qmail deferral code immediately. echo msg.replace( "\n", " - " ).hl( fgRed, bright=true ) - quit( 1 ) + quit( 111 ) proc debug*( msg: string, args: varargs[string, `$`] ) =