The error message represented by errno will now be printed by run to stderr if exec() fails

This commit is contained in:
Scoopta 2020-11-02 18:49:15 -08:00
parent 9d57b9cc5f
commit 32d26ddaf7

View File

@ -214,7 +214,7 @@ void wofi_run_exec(const char* cmd) {
wofi_write_cache(mode, cmd);
execl(cmd, cmd, NULL);
}
fprintf(stderr, "%s cannot be executed\n", cmd);
fprintf(stderr, "%s cannot be executed %s\n", cmd, strerror(errno));
exit(errno);
}