1
0
Fork 0

Fix windows bin proxy when there are spaces in the path

pull/757/head
Jordi Boggiano 2012-06-01 13:56:05 +02:00
parent 3639611bc6
commit b92a19ce4b
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ class LibraryInstaller implements InstallerInterface
"cd ".escapeshellarg(dirname($binPath))."\r\n". "cd ".escapeshellarg(dirname($binPath))."\r\n".
"set BIN_TARGET=%CD%\\".basename($binPath)."\r\n". "set BIN_TARGET=%CD%\\".basename($binPath)."\r\n".
"popd\r\n". "popd\r\n".
$caller." %BIN_TARGET% %*\r\n"; $caller." \"%BIN_TARGET%\" %*\r\n";
} }
private function generateUnixyProxyCode($bin, $link) private function generateUnixyProxyCode($bin, $link)