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 15:20:29 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-13 15:20:29 +0400
commit37a4ac1563c1643cede61634a98bfff6d5661ae5 (patch)
tree8763da553406bc652df169c9ff6bb74597e8cb52 /tests
parent937bbca5e8c2959040694f9d5b06ae38a4a15f95 (diff)
Send git cloning output to /dev/null in checkout_dependent_plugins.sh travis script.
Diffstat (limited to 'tests')
-rw-r--r--tests/travis/checkout_dependent_plugins.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/travis/checkout_dependent_plugins.sh b/tests/travis/checkout_dependent_plugins.sh
index 73f9755a74..4e22a6eec6 100644
--- a/tests/travis/checkout_dependent_plugins.sh
+++ b/tests/travis/checkout_dependent_plugins.sh
@@ -13,6 +13,6 @@ else
dependentPluginName=`echo "$pluginSlug" | sed -E 's/[a-zA-Z0-9_]+-(.*)/\1/'`
echo "Cloning $pluginSlug..."
- git clone --depth=1 "https://$GITHUB_USER_TOKEN:@github.com/$pluginSlug" "plugins/$dependentPluginName"
+ git clone --depth=1 "https://$GITHUB_USER_TOKEN:@github.com/$pluginSlug" "plugins/$dependentPluginName" 2> /dev/null
done
fi \ No newline at end of file