Either semicolon or parentheses
The current error message is:
"..." returned non-zero exit status: 1)
It should be either:
"..." returned non-zero exit status (1)
or:
"..." returned non-zero exit status: 1
I chose the latter.
Signed-off-by: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com>
Signed-off-by: Daniel Lenski <dlenski@gmail.com>
var exitCode = oExec.ExitCode;
if (exitCode != 0)
- echo(ERROR, "\"" + cmd + "\" returned non-zero exit status: " + exitCode + ")");
+ echo(ERROR, "\"" + cmd + "\" returned non-zero exit status: " + exitCode);
echo((exitCode != 0 ? ERROR : TRACE), " stdout+stderr dump: " + s);
accumulatedExitCode += exitCode;