Added quotes around a directory path that was missed in previous commit

This commit is contained in:
Michael Ridgway 2011-06-10 10:28:36 -04:00
parent 19a8ece323
commit 0b7321af78

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));
}