Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiehl committed Oct 12, 2014
1 parent e21e7b3 commit ffc4df6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ install:
- git checkout master -- ./tests/travis ./plugins/CoreConsole || true

before_script:
- if [ -z "$TEST_SUITE" ];
- if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
then composer require satooshi/php-coveralls dev-master;
fi

Expand Down Expand Up @@ -165,7 +165,7 @@ after_script:
# change directory back to root travis dir
- cd $PIWIK_ROOT_DIR

- if [ -z "$TEST_SUITE" ];
- if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
then php vendor/bin/coveralls -v;
fi

Expand Down
4 changes: 2 additions & 2 deletions plugins/CoreConsole/templates/travis.yml.twig
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ before_script:
{% if customTravisBuildSteps.before_script.before|default is not empty %}{{ customTravisBuildSteps.before_script.before|raw }}

{% endif %}
- if [ -z "$TEST_SUITE" ];
- if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
then composer require satooshi/php-coveralls dev-master;
fi

Expand Down Expand Up @@ -193,7 +193,7 @@ after_script:
# change directory back to root travis dir
- cd $PIWIK_ROOT_DIR

- if [ -z "$TEST_SUITE" ];
- if ([ -z "$TEST_SUITE" ] || [ -n "$PLUGIN_NAME" ]);
then php vendor/bin/coveralls -v;
fi

Expand Down

0 comments on commit ffc4df6

Please sign in to comment.