Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-04-25 20:18:55 +0000
committerDavid Williams2016-04-25 20:18:55 +0000
commitdfeaa967879a2132ab98dfc05bd8d8c0d6867d3b (patch)
tree24da7dd048c46749dd7fd4360977d5b4982491a6 /production/miscToolsAndNotes/cptestConfigs.sh
parent8c73859f8e2f17374df41fbad78b69709f6fabcc (diff)
downloadeclipse.platform.releng.aggregator-dfeaa967879a2132ab98dfc05bd8d8c0d6867d3b.tar.gz
eclipse.platform.releng.aggregator-dfeaa967879a2132ab98dfc05bd8d8c0d6867d3b.tar.xz
eclipse.platform.releng.aggregator-dfeaa967879a2132ab98dfc05bd8d8c0d6867d3b.zip
[releng] Misc cleanup and clarification
Diffstat (limited to 'production/miscToolsAndNotes/cptestConfigs.sh')
-rwxr-xr-xproduction/miscToolsAndNotes/cptestConfigs.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/production/miscToolsAndNotes/cptestConfigs.sh b/production/miscToolsAndNotes/cptestConfigs.sh
new file mode 100755
index 000000000..f7e0cb45a
--- /dev/null
+++ b/production/miscToolsAndNotes/cptestConfigs.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+# I am not sure what this is for?
+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