diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpm/download.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- library: + o fix parsing download progress with rsync >= 3.10 + Version 7.27.5 - 13 October 2013, by Colin Guthrie - use polkit for authorisation (mga#11125) diff --git a/urpm/download.pm b/urpm/download.pm index 8284e81a..31a88264 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -586,7 +586,7 @@ sub sync_rsync { my $buf = ''; my $cmd = join(" ", "/usr/bin/rsync", ($limit_rate ? "--bwlimit=$limit_rate" : @{[]}), - ($options->{quiet} ? qw(-q) : qw(--progress -v)), + ($options->{quiet} ? qw(-q) : qw(--progress -v --no-human-readable)), ($options->{compress} ? qw(-z) : @{[]}), ($options->{ssh} ? qq(-e $options->{ssh}) : ("--timeout=$CONNECT_TIMEOUT", |