Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 000f4b2dcbe51eb7f331a07089145298b495c23f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

# Utility to download the overall "web pages" from DL site, without getting all 
# the unnecessary things, and especially 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/

Back to the top