From: Andreas Barth Date: Sun, 13 Mar 2011 18:38:14 +0000 (+0000) Subject: exclude .new files (as we shouldn't rsync them anyways) X-Git-Url: https://git.donarmstrong.com/?p=wannabuild.git;a=commitdiff_plain;h=87ad762e32834250d7d6d28b3d074afa79425442 exclude .new files (as we shouldn't rsync them anyways) --- diff --git a/bin/sync.sh b/bin/sync.sh index 8298140..7b1e7ff 100755 --- a/bin/sync.sh +++ b/bin/sync.sh @@ -20,7 +20,7 @@ PASSWORD_FILE="$PASSWORD_BASE/$1.rsync-password" RSYNC_OPTIONS="--delete --delete-excluded -av" -MIRROR_EXCLUDES="--exclude=**/*.changes --exclude=**/installer-* --exclude=**/Packages.diff --exclude=**/Sources.diff --exclude=ChangeLog --exclude=**/Contents-* --exclude=**/Translation-* --exclude=**/*.bz2 --exclude=Packages --exclude=Sources" # the latter two because we only accept gziped files +MIRROR_EXCLUDES="--exclude=**/*.changes --exclude=**/installer-* --exclude=**/Packages.diff --exclude=**/Sources.diff --exclude=ChangeLog --exclude=**/Contents-* --exclude=**/Translation-* --exclude=**/*.bz2 --exclude=Packages --exclude=Sources --exclude=**/*.new" # the latter two because we only accept gziped files MIRROR_OPTIONS="$MIRROR_EXCLUDES $RSYNC_OPTIONS" # END OF OPTIONS ########################################################