summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-05-17 10:30:31 +0000
committerThierry Vignaud <tv@mageia.org>2013-05-17 10:30:31 +0000
commit0131e1455c3a365872ff97006ea777adc56024ed (patch)
treede47f1a6e5fc2d8542a7db218b0ca7e4030dbdf1
parent017cc45d6a272ac0dc238030e53e223a1598d195 (diff)
downloadurpmi-0131e1455c3a365872ff97006ea777adc56024ed.tar
urpmi-0131e1455c3a365872ff97006ea777adc56024ed.tar.gz
urpmi-0131e1455c3a365872ff97006ea777adc56024ed.tar.bz2
urpmi-0131e1455c3a365872ff97006ea777adc56024ed.tar.xz
urpmi-0131e1455c3a365872ff97006ea777adc56024ed.zip
do not popup errors at end in auto mode
-rw-r--r--NEWS6
-rwxr-xr-xgurpmi22
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 1963bc51..ba307085 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+- gurpmi2:
+ o like urpmi/rpmdrake/drakx, display all errors at once at end
+ instead of forcing users to click in order to continue
+ transactions (mga#6086)
+ o do not popup errors at end in auto mode
+
Version 7.26 - 2 May 2013, by Thierry Vignaud
- gurpmi2:
diff --git a/gurpmi2 b/gurpmi2
index 30540ac3..14a1d0f3 100755
--- a/gurpmi2
+++ b/gurpmi2
@@ -299,7 +299,7 @@ sub do_install_3 () {
ask_yes_or_no => \&ask_yes_or_no,
completed => sub {
- if (@errors) {
+ if (@errors && !$gurpmi::options{auto}) {
ask_warn(N("An error occurred:") . "\n\n" . join("\n", @errors));
}