Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-11 13:37:43 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-11 13:37:43 +0400
commit7cb154d6fdf9ffc7b4f4dd824dada3828456dfb4 (patch)
tree9e0877cbe15359281d49e21c9a85b54a78ddf433 /plugins
parent149088add54700fff6580c92aa13667e93ff86df (diff)
Fix YAML indentation error in generate:travis-yml command.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreConsole/templates/travis.yml.twig6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/CoreConsole/templates/travis.yml.twig b/plugins/CoreConsole/templates/travis.yml.twig
index 6d25790458..58a920e704 100644
--- a/plugins/CoreConsole/templates/travis.yml.twig
+++ b/plugins/CoreConsole/templates/travis.yml.twig
@@ -20,8 +20,10 @@ env:
{% else %}
- PIWIK_ROOT_DIR=$TRAVIS_BUILD_DIR/piwik
{% endif %}
- {% if artifactsPass|default is not empty %}secure: "{{ artifactsPass|raw }}"{% endif %}
- {% if githubToken|default is not empty %}secure: "{{ githubToken|raw }}"{% endif %}
+{% if artifactsPass|default is not empty %} - secure: "{{ artifactsPass|raw }}"
+{% endif %}
+{% if githubToken|default is not empty %} - secure: "{{ githubToken|raw }}"
+{% endif %}
matrix:
{% for test in testsToRun %} - TEST_SUITE={{ test.name|raw }} {{ test.vars|raw }}
{% endfor %}