Merge remote branch 'mridgway/vendorScriptSpaces'

* mridgway/vendorScriptSpaces:
  Added quotes around a directory path that was missed in previous commit
This commit is contained in:
Fabien Potencier 2011-06-10 16:33:11 +02:00
commit ce8d6d06e2

View File

@ -43,5 +43,5 @@ foreach ($deps as $dep) {
system(sprintf('git clone %s "%s"', $url, $installDir));
}
system(sprintf('cd %s && git fetch origin && git reset --hard %s', $installDir, $rev));
system(sprintf('cd "%s" && git fetch origin && git reset --hard %s', $installDir, $rev));
}