Use more readable QuitSuccess

This commit is contained in:
Florian Schroedl
2022-05-04 17:00:00 +02:00
parent 87b67ee3f1
commit e9718da7a1

View File

@@ -40,7 +40,7 @@ proc compileEcho(p: Process) {.thread.} =
let exitStatus = p.peekExitCode()
case exitStatus:
of 0: timedEcho("Compilation Succeded", Success)
of QuitSuccess: timedEcho("Compilation Succeded", Success)
else: timedEcho("COMPILATION ERRORED!!", Error)
p.close()