summaryrefslogtreecommitdiffstats
diff options
context:
space:
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));
}