Browse Source

trying without -o

Daniel Zlotin 8 years ago
parent
commit
2c4c6aac36
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      playground/scripts/e2e.ios.js

+ 3
- 3
playground/scripts/e2e.ios.js View File

@@ -16,7 +16,7 @@ function buildProjForDetox() {
16 16
 
17 17
   shellUtils.exec.execSync(`./scripts/detoxDebugFix.rb ${release ? '' : 'debug'}`);
18 18
 
19
-  shellUtils.exec.execSync(`echo -en 'travis_fold:start:xcodebuild'`);
19
+  shellUtils.exec.execSync(`echo -en 'travis_fold:start:xcodebuild\n'`);
20 20
 
21 21
   const cmd = `RCT_NO_LAUNCH_PACKAGER=true
22 22
           cd ios && xcodebuild
@@ -26,12 +26,12 @@ function buildProjForDetox() {
26 26
             -derivedDataPath ./DerivedData/playground`;
27 27
 
28 28
   if (hasXcpretty()) {
29
-    shellUtils.exec.execSync(`set -o pipefail && ${cmd} | xcpretty`);
29
+    shellUtils.exec.execSync(`${cmd} | xcpretty`);
30 30
   } else {
31 31
     shellUtils.exec.execSync(`${cmd}`);
32 32
   }
33 33
 
34
-  shellUtils.exec.execSync(`echo -en 'travis_fold:end:xcodebuild'`);
34
+  shellUtils.exec.execSync(`echo -en 'travis_fold:end:xcodebuild\n'`);
35 35
 }
36 36
 function hasXcpretty() {
37 37
   try {