mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
commands/exec_always: log error on execlp failure
And exit(1) instead of indicating success.
This commit is contained in:
parent
7beeb9e61b
commit
31a2252e83
@ -66,7 +66,8 @@ struct cmd_results *cmd_exec_process(int argc, char **argv) {
|
||||
if ((child = fork()) == 0) {
|
||||
close(fd[1]);
|
||||
execlp("sh", "sh", "-c", cmd, (void *)NULL);
|
||||
_exit(0);
|
||||
sway_log_errno(SWAY_ERROR, "execlp failed");
|
||||
_exit(1);
|
||||
}
|
||||
ssize_t s = 0;
|
||||
while ((size_t)s < sizeof(pid_t)) {
|
||||
|
Loading…
Reference in New Issue
Block a user