reword error message

This commit is contained in:
sasha0552 2024-07-25 12:29:31 +00:00 committed by GitHub
parent e8f1bd8b39
commit 28dd1b1f08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3248,6 +3248,6 @@ void script_execute(const std::string & script) {
int result = std::system(script.c_str());
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);
}
}