summaryrefslogtreecommitdiffstats
path: root/urpmi.update
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-01-28 01:01:30 +0000
committerOlivier Blin <oblin@mandriva.org>2004-01-28 01:01:30 +0000
commitd5e95fa23cf1d36d6e9709e5a2fea9bd4155d89c (patch)
tree860cd1e55843e6b806015490089b40221c6f14b0 /urpmi.update
parent882e3130561276b6f40c6d5ddb842de6049bbe85 (diff)
downloadurpmi-d5e95fa23cf1d36d6e9709e5a2fea9bd4155d89c.tar
urpmi-d5e95fa23cf1d36d6e9709e5a2fea9bd4155d89c.tar.gz
urpmi-d5e95fa23cf1d36d6e9709e5a2fea9bd4155d89c.tar.bz2
urpmi-d5e95fa23cf1d36d6e9709e5a2fea9bd4155d89c.tar.xz
urpmi-d5e95fa23cf1d36d6e9709e5a2fea9bd4155d89c.zip
fix --wget and --curl in urpmi.update
Diffstat (limited to 'urpmi.update')
-rwxr-xr-xurpmi.update7
1 files changed, 2 insertions, 5 deletions
diff --git a/urpmi.update b/urpmi.update
index 99fb2856..b861657e 100755
--- a/urpmi.update
+++ b/urpmi.update
@@ -34,11 +34,8 @@ sub main {
/^--?z$/ and ++$options{compress}, next;
/^--update$/ and $options{update} = 1, next;
/^--force-key$/ and $options{forcekey} = 1, next;
- /^--wget$/ and $urpm->{sync} = sub { my $options = shift @_;
- if (ref $options) { $options->{prefer} = 'wget' }
- else { $options = { dir => $options, prefer => 'wget' } }
- urpm::sync_webfetch($options, @_) }, next;
- /^--curl$/ and $urpm->{sync} = \&urpm::sync_webfetch, next;
+ /^--wget$/ and $urpm->{options}{downloader} = 'wget', next;
+ /^--curl$/ and $urpm->{options}{downloader} = 'curl', next;
/^--limit-rate$/ and do { $options{limit_rate} = shift @_; next };
/^--proxy$/ and do {
my ($proxy, $port) = ($_ = shift @_) =~ m,^(?:http://)?([^:]+(:\d+)?)/*$, or