]> git.donarmstrong.com Git - wannabuild.git/commitdiff
exclude .new files (as we shouldn't rsync them anyways)
authorAndreas Barth <aba@not.so.argh.org>
Sun, 13 Mar 2011 18:38:14 +0000 (18:38 +0000)
committerAndreas Barth <aba@not.so.argh.org>
Sun, 13 Mar 2011 18:38:36 +0000 (18:38 +0000)
bin/sync.sh

index 8298140e55545f595debca9586e8e00b34b49986..7b1e7ff0d571723f245596f78264110c8b1b2bdc 100755 (executable)
@@ -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 ########################################################