adding PHP_BINARY as env var to script execution
parent
2b9fee4cd0
commit
e5989fcfe0
|
@ -244,6 +244,12 @@ class EventDispatcher
|
||||||
|
|
||||||
if (substr($exec, 0, 5) === '@php ') {
|
if (substr($exec, 0, 5) === '@php ') {
|
||||||
$exec = $this->getPhpExecCommand() . ' ' . substr($exec, 5);
|
$exec = $this->getPhpExecCommand() . ' ' . substr($exec, 5);
|
||||||
|
} else {
|
||||||
|
$finder = new PhpExecutableFinder();
|
||||||
|
$phpPath = $finder->find(false);
|
||||||
|
if ($phpPath) {
|
||||||
|
putenv('PHP_BINARY=' . $phpPath);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (0 !== ($exitCode = $this->process->execute($exec))) {
|
if (0 !== ($exitCode = $this->process->execute($exec))) {
|
||||||
|
|
Loading…
Reference in New Issue