From 87ad762e32834250d7d6d28b3d074afa79425442 Mon Sep 17 00:00:00 2001 From: Andreas Barth Date: Sun, 13 Mar 2011 18:38:14 +0000 Subject: [PATCH] exclude .new files (as we shouldn't rsync them anyways) --- bin/sync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ######################################################## -- 2.39.2