diff options
author | Francois Pons <fpons@mandriva.com> | 2003-01-27 09:58:46 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-01-27 09:58:46 +0000 |
commit | 7836b77d3119408fb80a6688b72c42e5f165e223 (patch) | |
tree | 0dc623abc232ea85e10c058ea0a122b53e85a133 /urpm.pm | |
parent | 956469a4858b8a4ce922edb979b70290f9a7e798 (diff) | |
download | urpmi-7836b77d3119408fb80a6688b72c42e5f165e223.tar urpmi-7836b77d3119408fb80a6688b72c42e5f165e223.tar.gz urpmi-7836b77d3119408fb80a6688b72c42e5f165e223.tar.bz2 urpmi-7836b77d3119408fb80a6688b72c42e5f165e223.tar.xz urpmi-7836b77d3119408fb80a6688b72c42e5f165e223.zip |
4.2-12mdk
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -230,7 +230,7 @@ sub sync_wget { (ref $options && $options->{limit_rate} ? ("--limit-rate=$options->{limit_rate}") : ()), (ref $options && $options->{proxy} ? set_proxy({type => "wget", proxy => $options->{proxy}}) : ()), (ref $options && $options->{callback} ? ("--progress=bar:force", "-o", "-") : - ref $options && $options->{quiet} ? ("-q") : ("")), + ref $options && $options->{quiet} ? ("-q") : ()), "--retr-symlinks", "-NP", (ref $options ? $options->{dir} : $options), @_; local $/ = \1; #- read input by only one char, this is slow but very nice (and it works!). @@ -318,7 +318,7 @@ sub sync_curl { my ($buf, $file) = ('', undef); open CURL, "-|", "/usr/bin/curl", (ref $options && $options->{limit_rate} ? ("--limit-rate", $options->{limit_rate}) : ()), - (ref $options && $options->{proxy} && set_proxy({type => "curl", proxy => $options->{proxy}})), + (ref $options && $options->{proxy} ? set_proxy({type => "curl", proxy => $options->{proxy}}) : ()), (ref $options && $options->{quiet} && !$options->{verbose} ? ("-s") : ()), "-R", "-f", "--stderr", "-", @all_files; local $/ = \1; #- read input by only one char, this is slow but very nice (and it works!). |