8000 fix Process::run in windows, when php.exe resides within a folder with a space in it by Burgov · Pull Request #2814 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

fix Process::run in windows, when php.exe resides within a folder with a space in it #2814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix Process::run in windows, when php.exe resides within a folder wit…
…h a space in it
  • Loading branch information
Burgov committed Dec 8, 2011
commit 44271e258336fba628cd430e02b452541a050df6
2 changes: 1 addition & 1 deletion src/Symfony/Component/Process/PhpProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function run($callback = null)
if (false === $php = $this->executableFinder->find()) {
throw new \RuntimeException('Unable to find the PHP executable.');
}
$this->setCommandLine($php);
$this->setCommandLine(escapeshellarg($php));
}

return parent::run($callback);
Expand Down
0