Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-02-25 19:04:17 +0000
committerDavid Williams2015-02-25 19:04:17 +0000
commit359f0a65917010a3ffdd6645b38a3614a2ad176b (patch)
tree2bcab7c0fee33b0eb1fef50e1d743d4110bc23ac /production/downloadsites
parent88a93d44ba4a9474e96d6070f89e5710555937ed (diff)
downloadeclipse.platform.releng.aggregator-359f0a65917010a3ffdd6645b38a3614a2ad176b.tar.gz
eclipse.platform.releng.aggregator-359f0a65917010a3ffdd6645b38a3614a2ad176b.tar.xz
eclipse.platform.releng.aggregator-359f0a65917010a3ffdd6645b38a3614a2ad176b.zip
Bug 460650 - Suggest to 'archive' (at least) 4.3.2 (and it's Java 8
patch) add convenient download/sync script to git repo
Diffstat (limited to 'production/downloadsites')
-rwxr-xr-xproduction/downloadsites/downloadExistingEclipse.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/production/downloadsites/downloadExistingEclipse.sh b/production/downloadsites/downloadExistingEclipse.sh
new file mode 100755
index 000000000..9ef4a144e
--- /dev/null
+++ b/production/downloadsites/downloadExistingEclipse.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+
+# Utility to download the overall "webpages" from DL site, without getting all
+# the unnessary things, and espcially without getting the huge artifacts.
+
+# This is written to be ran "in place" in a local clone of the git tree, so that
+# a proper "compare" can be done with what is already checked in to git.
+
+rsync -aP --delete-excluded \
+ --exclude '/TIME' --exclude '**/ztime/' --exclude '**/pde/' --exclude '**/equinox/' --exclude '**/eclipse.org-common/' \
+ --exclude '**/e4/' --exclude '**/updates/' \
+ --include '/index.html' --include '**/drops/index.html' --include '**/drops4/index.html' \
+ --exclude '**/drops/**' --exclude '**/drops4/**' --exclude 'downloads/index.html' --exclude '**/downloads/eclipse3x.html' \
+ build:/home/data/httpd/download.eclipse.org/eclipse/ ./eclipse/ \ No newline at end of file

Back to the top