diff options
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 34db28fa8..09b3eaa8e 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -787,7 +787,7 @@ sub readBootloaderConfigBeforeInstall { my ($o) = @_; require bootloader; - add2hash($o->{bootloader} ||= {}, bootloader::read($o->{all_hds})); + eval { add2hash($o->{bootloader} ||= {}, bootloader::read($o->{all_hds})) }; $o->{bootloader}{bootUnsafe} = 0 if $o->{bootloader}{boot}; #- when upgrading, do not ask where to install the bootloader (mbr vs boot partition) } |