diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-12-03 14:53:17 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-12-03 14:53:17 +0000 |
commit | ef685055822f73fae5f01b7f8558f1e4d3a5a6cf (patch) | |
tree | 4551ef0beef6e3d41190a06648e4491ab150cea4 /urpm | |
parent | 4a300367a6d3fad315e36569936ff10dca73f340 (diff) | |
download | urpmi-ef685055822f73fae5f01b7f8558f1e4d3a5a6cf.tar urpmi-ef685055822f73fae5f01b7f8558f1e4d3a5a6cf.tar.gz urpmi-ef685055822f73fae5f01b7f8558f1e4d3a5a6cf.tar.bz2 urpmi-ef685055822f73fae5f01b7f8558f1e4d3a5a6cf.tar.xz urpmi-ef685055822f73fae5f01b7f8558f1e4d3a5a6cf.zip |
While we're at it, implement --no-ignore and make it work with -a
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/args.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/args.pm b/urpm/args.pm index aaf631d9..c5b375de 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -246,7 +246,7 @@ my %options_spec = ( f => sub { ++$options{force} }, z => sub { ++$options{compress} }, update => \$options{update}, - ignore => \$options{ignore}, + 'ignore!' => sub { $options{ignore} = $_[1] }, 'force-key' => \$options{forcekey}, 'limit-rate=s' => \$options{limit_rate}, 'no-md5sum' => \$options{nomd5sum}, |