소스 검색

trigger build

Daniel Zlotin 7 년 전
부모
커밋
428812d0ed
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      scripts/test.e2e.ios.js

+ 2
- 1
scripts/test.e2e.ios.js 파일 보기

@@ -50,7 +50,8 @@ function e2e() { //eslint-disable-line
50 50
 
51 51
 function installFbsimctlIfNeeded() {
52 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