Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-11-28 08:21:10 +0000
committerDavid Williams2014-11-28 08:21:10 +0000
commitbf491e3a1faa1ade03918a3cdc8acd279083f09f (patch)
treed32c9fe461682dec914322e235d6810447742a4c /production/sdk/miscTools/cptestConfigs.sh
parent12282cd1f57060108066a4bb417d528e0c38d554 (diff)
downloadeclipse.platform.releng.aggregator-bf491e3a1faa1ade03918a3cdc8acd279083f09f.tar.gz
eclipse.platform.releng.aggregator-bf491e3a1faa1ade03918a3cdc8acd279083f09f.tar.xz
eclipse.platform.releng.aggregator-bf491e3a1faa1ade03918a3cdc8acd279083f09f.zip
Bug 451808 - Add Solstice "thin" theme to download pages
cleanup and preparation
Diffstat (limited to 'production/sdk/miscTools/cptestConfigs.sh')
-rw-r--r--production/sdk/miscTools/cptestConfigs.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/production/sdk/miscTools/cptestConfigs.sh b/production/sdk/miscTools/cptestConfigs.sh
new file mode 100644
index 000000000..39e5bb6e5
--- /dev/null
+++ b/production/sdk/miscTools/cptestConfigs.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+
+for file in drops4/*
+do
+ if [[ -d $file ]]
+ then
+ echo "copying testConfigs.php to $file/"
+ cp testConfigs.php $file/
+ fi
+done

Back to the top