소스 검색

Fix windows bin proxy when there are spaces in the path

Jordi Boggiano 13 년 전
부모
커밋
b92a19ce4b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Composer/Installer/LibraryInstaller.php

+ 1 - 1
src/Composer/Installer/LibraryInstaller.php

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