Skip to content

Commit 8d48741

Browse files
committed
fix: return a !=0 status code if we can't launch the program
1 parent 15863d3 commit 8d48741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/log_proxy_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,5 @@ int main(int argc, char *argv[])
150150
close(bak_stderr);
151151
g_critical("can't launch %s command with error: %i [%s]", command, errno, strerror(errno));
152152
g_option_context_free(context);
153-
return 0;
153+
return 1;
154154
}

0 commit comments

Comments
 (0)