diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-02 17:24:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-02 17:24:19 +0000 |
commit | 2c29598785890ce276ae76b974c4eb99773c9797 (patch) | |
tree | 67752ee7013608f731e72ee85a400255b5f86ac8 | |
parent | 1e8e8f5d70d514690736633dfd22c3d1bb6b09e4 (diff) | |
download | urpmi-2c29598785890ce276ae76b974c4eb99773c9797.tar urpmi-2c29598785890ce276ae76b974c4eb99773c9797.tar.gz urpmi-2c29598785890ce276ae76b974c4eb99773c9797.tar.bz2 urpmi-2c29598785890ce276ae76b974c4eb99773c9797.tar.xz urpmi-2c29598785890ce276ae76b974c4eb99773c9797.zip |
there must still be args after parsing options
-rw-r--r-- | urpme | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,10 +59,10 @@ usage: exit(1); } -@ARGV or usage(); my @origARGV = @ARGV; my $urpm = urpm->new_parse_cmdline or exit(1); my @cmdline_pkgs_to_remove = @ARGV; +@cmdline_pkgs_to_remove or usage(); my $state = {}; |