X-Git-Url: http://gitweb/?a=blobdiff_plain;f=rsync%2Frsync.driver;h=14dd3e5fbae57f746e80a62bc463718ac994fd84;hb=3ec50173fbb253e15f3306db8c9ae5ce8d75176e;hp=31bb14a4fe2e3aac4c59a36e32a2a6f50576e2c0;hpb=5d6d95a304d7a4d5f6ca1bcb3a704f247478cb2f;p=crossrootfs.git diff --git a/rsync/rsync.driver b/rsync/rsync.driver index 31bb14a..14dd3e5 100644 --- a/rsync/rsync.driver +++ b/rsync/rsync.driver @@ -61,7 +61,7 @@ if (-e "$destination/.checkouts") print "Updating file list from " . $host . "::$collection\n"; # get the remote file list (new .checkouts) -open(PIPE, 'rsync -crz ' . $host . '::' . $collection . '|') or error("Couldn't open pipe to rsync"); +open(PIPE, 'rsync -crz --no-human-readable ' . $host . '::' . $collection . '|') or error("Couldn't open pipe to rsync"); while () { chomp; @@ -78,7 +78,7 @@ error("Running rsync failed") unless $? == 0; print "Updating collection " . basename($destination) . "\n"; # now really run rsync -open(PIPE, 'rsync -crz --log-format "%o %n" ' . $host . "::$collection $destination|") or error("Couldn't open pipe to rsync"); +open(PIPE, 'rsync -crz --no-human-readable --log-format "%o %n" ' . $host . "::$collection $destination|") or error("Couldn't open pipe to rsync"); while () { chomp;