Daniel Zlotin před 8 roky
rodič
revize
5af92abf86
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3
    3
      playground/scripts/quickInstall.js

+ 3
- 3
playground/scripts/quickInstall.js Zobrazit soubor

@@ -12,13 +12,13 @@ function copyNodeModulesFromNavigation() {
12 12
 }
13 13
 
14 14
 function run() {
15
-  exec.execSyncSilent(`hardlink ./node_modules/react-native-navigation/ -u || true`);
16
-  exec.execSyncSilent(`rm -rf ./node_modules || true`);
15
+  shellUtils.exec.execSyncSilent(`hardlink ./node_modules/react-native-navigation/ -u || true`);
16
+  shellUtils.exec.execSyncSilent(`rm -rf ./node_modules || true`);
17 17
   copyNodeModulesFromNavigation();
18 18
   installNavigation();
19 19
   shellUtils.exec.execSync(`./scripts/ignoreReactWarnings.rb`);
20 20
   if (!process.env.CI) {
21
-    exec.execSyncSilent(`hardlink ../ ./node_modules/react-native-navigation/ || true`);
21
+    shellUtils.exec.execSyncSilent(`hardlink ../ ./node_modules/react-native-navigation/ || true`);
22 22
   }
23 23
 }
24 24