From a725a2002345e19565f1ec0c129d5fd0f2cbe5bf Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 10 Oct 2008 11:35:01 +0000 Subject: (harvester) do not display gurpmi log errors when done installing updates, only do it for distribution upgrade (no sense doing it for regular updates when there's no such logs) --- mdkapplet | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'mdkapplet') diff --git a/mdkapplet b/mdkapplet index f042030c..c1ad3996 100755 --- a/mdkapplet +++ b/mdkapplet @@ -331,13 +331,15 @@ sub harvester { $mdvupdate_returned = 1; } undef $refork_gurpmi; - if ($status) { - ugtk2::ask_warn(N("Error"), - N("Installation failed"), - N("Installation logs can be found in '%s'", $log_file) - ); - } elsif ($state_global eq 'new_distribution') { - upgrade_distro_congratulations(); + if ($state_global eq 'new_distribution') { + if ($status) { + ugtk2::ask_warn(N("Error"), + N("Installation failed"), + N("Installation logs can be found in '%s'", $log_file) + ); + } else { + upgrade_distro_congratulations(); + } } } elsif ($checker_pid && $checker_pid == $childpid) { undef $checker_pid; -- cgit v1.2.1