diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-02-13 14:45:56 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-02-13 14:45:56 +0000 |
commit | fd76226b2aaf12e520213f5bb8474514cd8826e7 (patch) | |
tree | 550d1e94fa9c04d59c9745d6762d1623372d55a0 /urpmi.update | |
parent | a3922a35162b7a65dcc76cf52a9a68f8a34f89f9 (diff) | |
download | urpmi-fd76226b2aaf12e520213f5bb8474514cd8826e7.tar urpmi-fd76226b2aaf12e520213f5bb8474514cd8826e7.tar.gz urpmi-fd76226b2aaf12e520213f5bb8474514cd8826e7.tar.bz2 urpmi-fd76226b2aaf12e520213f5bb8474514cd8826e7.tar.xz urpmi-fd76226b2aaf12e520213f5bb8474514cd8826e7.zip |
Die if unknown command-line options are given.
Diffstat (limited to 'urpmi.update')
-rwxr-xr-x | urpmi.update | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpmi.update b/urpmi.update index 3bda128b..14bd5ee1 100755 --- a/urpmi.update +++ b/urpmi.update @@ -1,7 +1,7 @@ #!/usr/bin/perl #- Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 MandrakeSoft SA -#- Copyright (C) 2005 Mandriva SA +#- Copyright (C) 2005, 2006 Mandriva SA #- #- This program is free software; you can redistribute it and/or modify #- it under the terms of the GNU General Public License as published by @@ -60,7 +60,7 @@ my $urpm = new urpm; $options{force} = 0; $options{noclean} = $options{verbose} = 1; -urpm::args::parse_cmdline(urpm => $urpm); +urpm::args::parse_cmdline(urpm => $urpm) or exit(1); $options{verbose} > 0 or $urpm->{log} = sub {}; |