diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index f93a14e4e..00bc741d2 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -770,7 +770,8 @@ sub getAndSaveAutoInstallFloppy { ", "07\n" if !$replay; local $o->{partitioning}{clearall} = !$replay; - output("$mountdir/auto_inst.cfg", g_auto_install($replay)); + eval { output("$mountdir/auto_inst.cfg", g_auto_install($replay)); }; + $@ and log::l("Warning: <$@>"); fs::umount($mountdir); rmdir $mountdir; |