sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 31a2252e83a39ae9be8f9572179fe161c54f715d
parent 7beeb9e61b7f18a8c2e9aa015958cffde9b76c05
Author: Simon Ser <contact@emersion.fr>
Date:   Fri, 16 Apr 2021 10:32:32 +0200

commands/exec_always: log error on execlp failure

And exit(1) instead of indicating success.

Diffstat:
Msway/commands/exec_always.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sway/commands/exec_always.c b/sway/commands/exec_always.c @@ -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)) {