Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-04-05 16:43:29 +0000
committerDavid Williams2013-04-05 16:43:29 +0000
commitae64dfc59ef0711366e0a9cb52d21d785f68edb1 (patch)
tree5a2d1647e780fecc4273f9b03f9f9f7cbabfdb13 /production/sdk/promotion/syncUpdateUtils.shsource
parentcf0e1d5640dacd15de3064970dae87f869f161eb (diff)
downloadeclipse.platform.releng.aggregator-ae64dfc59ef0711366e0a9cb52d21d785f68edb1.tar.gz
eclipse.platform.releng.aggregator-ae64dfc59ef0711366e0a9cb52d21d785f68edb1.tar.xz
eclipse.platform.releng.aggregator-ae64dfc59ef0711366e0a9cb52d21d785f68edb1.zip
[releng] exclude 'repository' and 'workspace-*' from copy from build
machine to downloads directory
Diffstat (limited to 'production/sdk/promotion/syncUpdateUtils.shsource')
-rw-r--r--production/sdk/promotion/syncUpdateUtils.shsource2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/sdk/promotion/syncUpdateUtils.shsource b/production/sdk/promotion/syncUpdateUtils.shsource
index c14c0de61..65d91017f 100644
--- a/production/sdk/promotion/syncUpdateUtils.shsource
+++ b/production/sdk/promotion/syncUpdateUtils.shsource
@@ -371,7 +371,7 @@ function syncDropLocation ()
# sub-sirectory) (But, we do for now, for easier testing)
if [[ -n "${fromDir}" && -d "${fromDir}" && -n "${toDir}" && -d "${toDir}" ]]
then
- rsync --times --omit-dir-times --recursive --exclude="*org.eclipse.releng.basebuilder*" --exclude="*eclipse.platform.releng.aggregator*" "${fromDir}" "${toDir}"
+ rsync --times --omit-dir-times --recursive --exclude="*org.eclipse.releng.basebuilder*" --exclude="*eclipse.platform.releng.aggregator*" --exclude="*repository*" --exclude="*workspace-*" "${fromDir}" "${toDir}"
rccode=$?
else
rccode=9

Back to the top