summaryrefslogtreecommitdiffstats
path: root/urpmi.update
diff options
context:
space:
mode:
Diffstat (limited to 'urpmi.update')
-rwxr-xr-xurpmi.update7
1 files changed, 5 insertions, 2 deletions
diff --git a/urpmi.update b/urpmi.update
index eb36afac..1454d16a 100755
--- a/urpmi.update
+++ b/urpmi.update
@@ -35,8 +35,11 @@ sub main {
/^--?c/ and $options{noclean} = 0, next;
/^--?d/ and $options{depslist} = 1, next;
/^--?f/ and ++$options{force}, next;
- /^--wget/ and $urpm->{sync} = \&urpm::sync_wget, next;
- /^--curl/ and $urpm->{sync} = \&urpm::sync_curl, 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;
/^--?noa/ and next; #- default, keeped for compability.
/^-/ and die _("usage: urpmi.update [options] <name> ...
where <name> is a medium name to update.