We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7140a3 commit f1ee5ffCopy full SHA for f1ee5ff
src/nimblepkg/tools.nim
@@ -31,7 +31,8 @@ proc doCmd*(cmd: string) =
31
# Show no command line and --hints:off output by default for calls
32
# to Nim, command line and standard output with --verbose.
33
display("Executing", cmd, priority = MediumPriority)
34
- let exitCode = execCmd(cmd)
+ let (output, exitCode) = execCmdEx(cmd)
35
+ display("Nim Output", output, priority = HighPriority)
36
if exitCode != QuitSuccess:
37
raise nimbleError(
38
"Execution failed with exit code $1\nCommand: $2" %
0 commit comments