Created
February 10, 2017 17:36
-
-
Save andreaferretti/e888b754d5ca55a64cd501a932dea1fe to your computer and use it in GitHub Desktop.
Nimble fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exitCode = 0 | |
if showOutput: | |
exitCode = execCmd(cmd) | |
else: | |
let (output, ec) = execCmdEx(cmd) | |
exitCode = ec | |
displayDebug("Finished", "with exit code " & $exitCode) | |
displayDebug("Output", output) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment