diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-07-18 08:03:43 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-07-18 08:03:43 +0000 |
commit | a8cc43d1bc9bf356aba6731c01015c2246615615 (patch) | |
tree | 54ef8a33f0906b8ef3e9d883d27f9c5c932e887e /perl-install/install_steps.pm | |
parent | 5e8dc9870b33434b474c99c0ded736bd39867d0f (diff) | |
download | drakx-a8cc43d1bc9bf356aba6731c01015c2246615615.tar drakx-a8cc43d1bc9bf356aba6731c01015c2246615615.tar.gz drakx-a8cc43d1bc9bf356aba6731c01015c2246615615.tar.bz2 drakx-a8cc43d1bc9bf356aba6731c01015c2246615615.tar.xz drakx-a8cc43d1bc9bf356aba6731c01015c2246615615.zip |
do not die and loop on the exitInstall step if the install images
can't be saved (#16881)
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 f9855c04e..5ae395a02 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -936,7 +936,7 @@ sub exitInstall { output "$::prefix$report", install_any::report_bug(); run_program::rooted($::prefix, 'gzip', $report); }; - install_any::getAndSaveAutoInstallFloppies($o, 1) if arch() !~ /^ppc/; + eval { install_any::getAndSaveAutoInstallFloppies($o, 1) } if arch() !~ /^ppc/; eval { output "$o->{prefix}/root/drakx/README", "This directory contains several installation-related files, mostly log files (very useful if you ever report a bug!). |