diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-03-13 13:38:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-03-13 13:38:37 +0000 |
commit | 51ff17185f14726b69742c44e5344cb2b6de8b83 (patch) | |
tree | 57718da3172ab9c2ca26b2c662e7362a19bb8601 | |
parent | 65304a86977b772f11eca3fe7221c6f140640a8c (diff) | |
download | urpmi-51ff17185f14726b69742c44e5344cb2b6de8b83.tar urpmi-51ff17185f14726b69742c44e5344cb2b6de8b83.tar.gz urpmi-51ff17185f14726b69742c44e5344cb2b6de8b83.tar.bz2 urpmi-51ff17185f14726b69742c44e5344cb2b6de8b83.tar.xz urpmi-51ff17185f14726b69742c44e5344cb2b6de8b83.zip |
(configure_urpm) return 1 like urpmi if package doesn't exist
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi2 | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ o ensure urpmi messages are always in UTF-8 o return urpmi error code o handle --force + o return 1 like urpmi if package doesn't exist Version 5.11 - 11 March 2008, by Pascal "Pixel" Rigaux @@ -81,7 +81,7 @@ my $urpm = configure_urpm(); my $state = {}; my %requested = $urpm->register_rpms(@all_rpms); if (@gurpmi::names) { - urpm::select::search_packages($urpm, \%requested, [ @gurpmi::names ]); + urpm::select::search_packages($urpm, \%requested, [ @gurpmi::names ]) || $force or exit 1; } #- return value is true if program should be restarted (in order to take care of important |