diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-14 13:05:09 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-14 13:05:09 +0000 |
commit | 3fa9701aad76a10e192e0675db371d76aac11a85 (patch) | |
tree | 028ce6f9546ba51090bc0338e9a3a9d1f15130fa | |
parent | 171659fd0d36e5784221cd2a1237bc4dff308143 (diff) | |
download | urpmi-3fa9701aad76a10e192e0675db371d76aac11a85.tar urpmi-3fa9701aad76a10e192e0675db371d76aac11a85.tar.gz urpmi-3fa9701aad76a10e192e0675db371d76aac11a85.tar.bz2 urpmi-3fa9701aad76a10e192e0675db371d76aac11a85.tar.xz urpmi-3fa9701aad76a10e192e0675db371d76aac11a85.zip |
(do_install_3) fix exit code if not refusing to insert the proper media
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi2 | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ - gurpmi + o fix exit code if not refusing to insert the proper media o notify callers when installation is canceled (#40358) Version 6.3 - 14 August 2008, Thierry Vignaud @@ -284,7 +284,7 @@ sub do_install_3 () { ); my $response = $w->run; $w->destroy; - exit 0 if $response eq 'cancel'; + exit 1 if $response eq 'cancel'; 1; }, trans_log => sub { |