Bläddra i källkod

Merge pull request #6653 from glensc/sh-syntax

fix parallel test exit scenario shell syntax
Jordi Boggiano 7 år sedan
förälder
incheckning
080fefa112
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -55,4 +55,4 @@ before_script:
 
 script:
     # run test suite directories in parallel using GNU parallel
-    - ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && $(exit 1));'
+    - ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && exit 1);'