From 5a4dfb90478127672ec85e1d59f0850eb8f5a54f Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Tue, 30 Oct 2018 19:14:05 +0100 Subject: [PATCH] adapted executes --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5d5b010..fd62bf0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,9 +5,9 @@ before_install: - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules - git submodule update --init --recursive before_script: - - travis_retry (cd application && composer self-update) - - travis_retry (cd application && composer install --no-interaction --prefer-source --dev) + - travis_retry cd application && composer self-update + - travis_retry cd application && composer install --no-interaction --prefer-source --dev script: - application/vendor/bin/phpunit --coverage-clover=coverage.xml after_success: -- (cd application && bash <(curl -s https://codecov.io/bash)) + - cd application && bash <(curl -s https://codecov.io/bash)