浏览代码

Merge pull request #4952 from Jos635/fix-cygwin-quotes

Fix for the unix bin proxy on cygwin if the directory contains spaces
Jordi Boggiano 9 年之前
父节点
当前提交
45f6b37615
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Installer/LibraryInstaller.php

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

@@ -356,7 +356,7 @@ if command -v 'cygpath' >/dev/null 2>&1; then
 	# we could be using cygwin PHP which does not require this, so we
 	# test if the path to PHP starts with /cygdrive/ rather than /usr/bin
 	if [[ $(which php) == /cygdrive/* ]]; then
-		dir=$(cygpath -m \$dir);
+		dir=$(cygpath -m "\$dir");
 	fi
 fi