From 19a8ece323c9c859474c8ba80692a51e91f792ca Mon Sep 17 00:00:00 2001 From: Michael Ridgway Date: Wed, 8 Jun 2011 14:25:56 -0400 Subject: [PATCH] Fixed vendors.php not working if directory path has space in it --- vendors.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendors.php b/vendors.php index b5bd175fd4..75d5cbd33c 100755 --- a/vendors.php +++ b/vendors.php @@ -40,7 +40,7 @@ foreach ($deps as $dep) { $installDir = $vendorDir.'/'.$name; if (!is_dir($installDir)) { - system(sprintf('git clone %s %s', $url, $installDir)); + system(sprintf('git clone %s "%s"', $url, $installDir)); } system(sprintf('cd %s && git fetch origin && git reset --hard %s', $installDir, $rev));