# HG changeset patch # User Bernhard Reiter # Date 1261401700 0 # Node ID 0862a14df80b494d23378cf3ac7a7c68adbb95d7 # Parent dba1b6b825eccfec4bcef5ac43df8ff85f3e78e2 Rsync call parameters: Using the long version with some parameters for clarity. Added --omit-dir-times - otherwise the dirs have to be owned. diff -r dba1b6b825ec -r 0862a14df80b bin/publishpackages.py --- a/bin/publishpackages.py Wed Dec 09 17:47:15 2009 +0000 +++ b/bin/publishpackages.py Mon Dec 21 13:21:40 2009 +0000 @@ -143,7 +143,8 @@ rsync_flags.append("--delete") if quiet: rsync_flags.append("--quiet") - call(cmdexpand("rsync @rsync_flags -rpt $cachedir/ $remote_destdir/", + call(cmdexpand("rsync @rsync_flags -r --perms --times --omit-dir-times" + " $cachedir/ $remote_destdir/", rsync_flags=rsync_flags, remote_destdir=remote_destdir, **variables))