diff options
author | Mystery Man 553 <uid553@mandriva.org> | 2001-02-13 11:36:45 +0000 |
---|---|---|
committer | Mystery Man 553 <uid553@mandriva.org> | 2001-02-13 11:36:45 +0000 |
commit | 1e754ab1b984dd9f710e67b7b34e7ebfabb25fa5 (patch) | |
tree | 1d5bfca7ece76e8978447162026ccc20c610cdb6 /perl-install/install_steps.pm | |
parent | e3b2373e83908f9c30463e99c124320a6983226c (diff) | |
download | drakx-1e754ab1b984dd9f710e67b7b34e7ebfabb25fa5.tar drakx-1e754ab1b984dd9f710e67b7b34e7ebfabb25fa5.tar.gz drakx-1e754ab1b984dd9f710e67b7b34e7ebfabb25fa5.tar.bz2 drakx-1e754ab1b984dd9f710e67b7b34e7ebfabb25fa5.tar.xz drakx-1e754ab1b984dd9f710e67b7b34e7ebfabb25fa5.zip |
(exitInstall): catch exception of output report.bug (for gc)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 26c55950e..9075931f8 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -803,7 +803,7 @@ sub generateAutoInstFloppy($) { #------------------------------------------------------------------------------ sub exitInstall { my ($o) = @_; - output "$o->{prefix}/root/report.bug", commands::report_bug(); + eval { output "$o->{prefix}/root/report.bug", commands::report_bug() }; install_any::unlockCdrom; install_any::log_sizes($o); } |