diff options
-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 canceling when requested to select a choice o fix exit code if not refusing to insert the proper media o notify callers when installation is canceled (#40358) @@ -179,7 +179,7 @@ sub ask_choice { foreach (@radios) { last if $_->get_active; ++$n } } $d->destroy; - exit(0) if $_[1] == 0; #- "cancel" + exit(1) if $_[1] == 0; #- "cancel" }); $radios[0]->set_active(1); $d->set_default_response(1); # defaults to ok |