summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2008-02-15 17:19:00 -0500
committerJesse Keating <jkeating@redhat.com>2008-02-15 17:19:00 -0500
commit2a795d7216405ec0c63908695fd60fbae3b253cf (patch)
tree6263c22196619096201ce23102f7b129758d011e
parent537fc013603cb5fda6ce48df48d2a887f5f19165 (diff)
downloadreleng-2a795d7216405ec0c63908695fd60fbae3b253cf.tar.gz
releng-2a795d7216405ec0c63908695fd60fbae3b253cf.tar.xz
releng-2a795d7216405ec0c63908695fd60fbae3b253cf.zip
Use right rsync flags in buildrawhide
Use DATE not VER alias
-rwxr-xr-xscripts/buildrawhide6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/buildrawhide b/scripts/buildrawhide
index 7e03827..eb0ac0c 100755
--- a/scripts/buildrawhide
+++ b/scripts/buildrawhide
@@ -47,10 +47,10 @@ mock -r fedora-rawhide-x86_64 --clean
[ -n "$NOSYNC" ] && exit $rc
cd /tmp
# data
-su ftpsync -c "rsync $RSYNC_OPTS -avH --exclude repodata/ /mnt/koji/mash/rawhide-$VER/development/ $DESTPATH"
+su ftpsync -c "rsync $RSYNC_OPTS -rlptDvHh --exclude repodata/ /mnt/koji/mash/rawhide-$DATE/development/ $DESTPATH"
# repodata & cleanup
-su ftpsync -c "rsync $RSYNC_OPTS -avH --delete --delete-after /mnt/koji/mash/rawhide-$VER/development/ $DESTPATH"
+su ftpsync -c "rsync $RSYNC_OPTS -rlptDvHhavH --delete --delete-after /mnt/koji/mash/rawhide-$DATE/development/ $DESTPATH"
if [ "$?" = "0" ]; then
- cat /mnt/koji/mash/rawhide-$VER/logs/treediff /mnt/koji/mash/rawhide-$VER/logs/depcheck | su rawhide -c "mail -s 'rawhide report: '$VER' changes' fedora-devel-list@redhat.com,fedora-test-list@redhat.com"
+ cat /mnt/koji/mash/rawhide-$DATE/logs/treediff /mnt/koji/mash/rawhide-$DATE/logs/depcheck | su rawhide -c "mail -s 'rawhide report: '$DATE' changes' fedora-devel-list@redhat.com,fedora-test-list@redhat.com"
fi
exit 0