Daniel Zlotin пре 8 година
родитељ
комит
428812d0ed
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2
    1
      scripts/test.e2e.ios.js

+ 2
- 1
scripts/test.e2e.ios.js Прегледај датотеку

50
 
50
 
51
 function installFbsimctlIfNeeded() {
51
 function installFbsimctlIfNeeded() {
52
   if (!isInstalled(`fbsimctl`)) {
52
   if (!isInstalled(`fbsimctl`)) {
53
-    shellUtils.exec.execSync(`brew tap facebook/fb && brew install fbsimctl`);
53
+    console.log(`installing fbsimctl...`); //eslint-disable-line
54
+    shellUtils.exec.execSyncSilent(`brew tap facebook/fb && brew install fbsimctl`);
54
   }
55
   }
55
 }
56
 }
56
 
57