diff options
Diffstat (limited to 'urpm/download.pm')
-rw-r--r-- | urpm/download.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/download.pm b/urpm/download.pm index 6b5c2980..d18f0395 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -344,7 +344,7 @@ sub sync_curl { ($options->{resume} ? ("--continue-at", "-") : ()), ($options->{proxy} ? set_proxy({ type => "curl", proxy => $options->{proxy} }) : ()), ($options->{retry} ? ('--retry', $options->{retry}) : ()), - ($options->{quiet} && !$options->{verbose} ? "-s" : @{[]}), + ($options->{quiet} ? "-s" : @{[]}), "-k", $location_trusted ? "--location-trusted" : @{[]}, "-R", |