Prechádzať zdrojové kódy

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

Michael Ridgway 14 rokov pred
rodič
commit
0b7321af78
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      vendors.php

+ 1 - 1
vendors.php

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