diff options
Diffstat (limited to 'urpmi.removemedia')
-rwxr-xr-x | urpmi.removemedia | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/urpmi.removemedia b/urpmi.removemedia index 601b60b4..5db1f006 100755 --- a/urpmi.removemedia +++ b/urpmi.removemedia @@ -39,7 +39,8 @@ sub main { /^--?y$/ and $options{strict_match} = 0, next; /^--?v$/ and $options{verbose} = 1, next; /^--?q$/ and $options{verbose} = 0, next; - /^-/ and die N("usage: urpmi.removemedia [-a] <name> ... + /^-/ and do { + print N("usage: urpmi.removemedia [-a] <name> ... where <name> is a medium name to remove. ") . N(" --help - print this help message. ") . N(" -a - select all media. @@ -48,6 +49,8 @@ where <name> is a medium name to remove. ") . N(" -q - quiet mode. ") . N(" -v - verbose mode. ") . (/^--?h(?:elp)$/ ? '' : N("\nunknown options '%s'\n", $_)); + exit 0; + }; } push @toremoves, $_; } |