reword error message
This commit is contained in:
parent
e8f1bd8b39
commit
28dd1b1f08
1 changed files with 1 additions and 1 deletions
|
@ -3248,6 +3248,6 @@ void script_execute(const std::string & script) {
|
||||||
int result = std::system(script.c_str());
|
int result = std::system(script.c_str());
|
||||||
|
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
fprintf(stderr, "%s: error: unable to execute script '%s'. exit code: %d\n", __func__, script.c_str(), result);
|
fprintf(stderr, "%s: error: script '%s' failed with exit code %d\n", __func__, script.c_str(), result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue