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:
-rw-r--r--.travis.yml2
-rw-r--r--plugins/CoreConsole/templates/travis.yml.twig2
-rwxr-xr-xtests/travis/checkout_dependent_plugins.sh4
3 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 9604132289..95003d4a40 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -88,7 +88,7 @@ before_install:
install:
# make sure travis test scripts are always latest (so in older releases/branches, the latest scripts will still be used)
- git fetch
- - git checkout master -- ./tests/travis ./plugins/CoreConsole
+ - git checkout master -- ./tests/travis ./plugins/CoreConsole || true
before_script:
- ./tests/travis/configure_git.sh
diff --git a/plugins/CoreConsole/templates/travis.yml.twig b/plugins/CoreConsole/templates/travis.yml.twig
index 569439de42..6b52f22558 100644
--- a/plugins/CoreConsole/templates/travis.yml.twig
+++ b/plugins/CoreConsole/templates/travis.yml.twig
@@ -92,7 +92,7 @@ install:
{% else %}
# make sure travis test scripts are always latest (so in older releases/branches, the latest scripts will still be used)
- git fetch
- - git checkout master -- ./tests/travis ./plugins/CoreConsole
+ - git checkout master -- ./tests/travis ./plugins/CoreConsole || true
{% endif %}
before_script:
diff --git a/tests/travis/checkout_dependent_plugins.sh b/tests/travis/checkout_dependent_plugins.sh
index 08b3fb4955..833c09d931 100755
--- a/tests/travis/checkout_dependent_plugins.sh
+++ b/tests/travis/checkout_dependent_plugins.sh
@@ -8,7 +8,7 @@ else
echo "Cloning dependent plugins..."
echo ""
- for pluginSlug in "${DEPENDENT_PLUGINS[@]}"
+ for pluginSlug in $DEPENDENT_PLUGINS
do
dependentPluginName=`echo "$pluginSlug" | sed -E 's/PiwikPRO\/[a-zA-Z0-9_]+-(.*)/\1/'`
@@ -16,7 +16,7 @@ else
git clone --depth=1 "https://$GITHUB_USER_TOKEN:@github.com/$pluginSlug" "plugins/$dependentPluginName" 2> /dev/null
done
- echo "Plugin directory"
+ echo "Plugin directory:"
echo ""
ls -d plugins/*