Skip to content

Commit

Permalink
fix: return a !=0 status code if we can't launch the program
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Jan 21, 2021
1 parent 15863d3 commit 8d48741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/log_proxy_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,5 @@ int main(int argc, char *argv[])
close(bak_stderr);
g_critical("can't launch %s command with error: %i [%s]", command, errno, strerror(errno));
g_option_context_free(context);
return 0;
return 1;
}

0 comments on commit 8d48741

Please sign in to comment.