mirror of
https://github.com/openresty/openresty
synced 2024-11-09 18:35:51 +01:00
bugfix: resty: we should check the case when exec() fails. thanks Michal Cichra for the original patch in #65.
This commit is contained in:
parent
c7eea80684
commit
07913609c6
@ -29,7 +29,8 @@ if (!-f $nginx_path) {
|
||||
}
|
||||
|
||||
if ($opts{V}) {
|
||||
exec "$nginx_path -V";
|
||||
my $cmd = "$nginx_path -V";
|
||||
exec $cmd or die "Failed to run command \"$cmd\": $!\n";
|
||||
}
|
||||
|
||||
my $lua_package_path_config = '';
|
||||
@ -259,7 +260,7 @@ if (!defined $pid) {
|
||||
|
||||
if ($pid == 0) { # child process
|
||||
#warn "exec $cmd...";
|
||||
exec $cmd;
|
||||
exec $cmd or die "Failed to run command \"$cmd\": $!\n";
|
||||
|
||||
} else {
|
||||
$child_pid = $pid;
|
||||
|
Loading…
Reference in New Issue
Block a user