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
path: root/tests
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-13 18:34:41 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-13 18:34:55 +0400
commit2ccb561b6fe08902ddbb4cc5b4ee63608faa98f3 (patch)
tree53e5799bb7dcb21263fd63694622de3c713ba543 /tests
parent15441fcaad8e725875edd223778f3219b1f09083 (diff)
Add more debugging information to checkout_dependent_plugins.sh script.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/travis/checkout_dependent_plugins.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/travis/checkout_dependent_plugins.sh b/tests/travis/checkout_dependent_plugins.sh
index 4e22a6eec6..bf5d2232f1 100755
--- a/tests/travis/checkout_dependent_plugins.sh
+++ b/tests/travis/checkout_dependent_plugins.sh
@@ -12,7 +12,12 @@ else
do
dependentPluginName=`echo "$pluginSlug" | sed -E 's/[a-zA-Z0-9_]+-(.*)/\1/'`
- echo "Cloning $pluginSlug..."
+ echo "Cloning $pluginSlug into plugins/$dependentPluginName..."
git clone --depth=1 "https://$GITHUB_USER_TOKEN:@github.com/$pluginSlug" "plugins/$dependentPluginName" 2> /dev/null
done
+
+ echo "Plugin directory"
+ echo ""
+
+ ls -d plugins
fi \ No newline at end of file