From a8cc43d1bc9bf356aba6731c01015c2246615615 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 18 Jul 2005 08:03:43 +0000 Subject: do not die and loop on the exitInstall step if the install images can't be saved (#16881) --- perl-install/install_steps.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!). -- cgit v1.2.1