diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-06 09:10:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-06 09:10:03 +0000 |
commit | b2e3d600f53d2cfaf8c95a5f646d49ee69a60799 (patch) | |
tree | c40a036007964a38ae6f13db5c7e612a0983a5fd /perl-install/standalone.pm | |
parent | 3e6e129302320c48b7a87f9559b83114e418b49c (diff) | |
download | drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar.gz drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar.bz2 drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar.xz drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.zip |
(bug_handler) drakbug: do not report "wizcancel" exceptions (#32308)
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r-- | perl-install/standalone.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 7e86c1d7a..c20381911 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -194,8 +194,8 @@ sub bug_handler { # we want the full backtrace: $error .= common::backtrace() if $error; my $progname = $0; - # do not loop if drakbug crashes: - if ($progname =~ /drakbug/) { + # do not loop if drakbug crashes and do not complain about wizcancel: + if ($progname =~ /drakbug/ || $error =~ /wizcancel/) { warn $error; exit(1); } |