Daniel Zlotin 8 years ago
parent
commit
5af92abf86
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      playground/scripts/quickInstall.js

+ 3
- 3
playground/scripts/quickInstall.js View File

@@ -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