diff options
author | Francois Pons <fpons@mandriva.com> | 2003-12-05 20:28:02 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-12-05 20:28:02 +0000 |
commit | ff5de4e539ee979095de9f48d335a6ede0ae4584 (patch) | |
tree | b5c49b7751a3be003e06216837052b5f17219e95 /urpmi.addmedia | |
parent | 5d034413d1804079456b89690c3dd9ef55b81b58 (diff) | |
download | urpmi-ff5de4e539ee979095de9f48d335a6ede0ae4584.tar urpmi-ff5de4e539ee979095de9f48d335a6ede0ae4584.tar.gz urpmi-ff5de4e539ee979095de9f48d335a6ede0ae4584.tar.bz2 urpmi-ff5de4e539ee979095de9f48d335a6ede0ae4584.tar.xz urpmi-ff5de4e539ee979095de9f48d335a6ede0ae4584.zip |
fixed small options being blocking long options.
Diffstat (limited to 'urpmi.addmedia')
-rwxr-xr-x | urpmi.addmedia | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/urpmi.addmedia b/urpmi.addmedia index a4c9528e..09e02504 100755 --- a/urpmi.addmedia +++ b/urpmi.addmedia @@ -83,10 +83,10 @@ and [options] are from $options{probe_with} = 'synthesis'; #- no the default is to probe synthesis file. my $urpm = new urpm; while ($_ = shift @_) { - /^--?c/ and $options{noclean} = 0, next; - /^--?h/ and next; - /^--?f/ and ++$options{force}, next; - /^-z$/ and ++$options{compress}, next; + /^--?c$/ and $options{noclean} = 0, next; + /^--?h$/ and next; + /^--?f$/ and ++$options{force}, next; + /^--?z$/ and ++$options{compress}, next; /^--wget/ and $urpm->{sync} = sub { my $options = shift @_; if (ref $options) { $options->{prefer} = 'wget' } else { $options = { dir => $options, prefer => 'wget' } } |