summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 6cef62347..8ee2cceef 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -268,7 +268,10 @@ sub choosePartitionsToFormat($$) {
if (!$_->{toFormat}) {
my $fs_type = fs::type::fs_type_from_magic($_);
- $_->{toFormatUnsure} ||= !$fs_type || $fs_type ne $_->{fs_type};
+ if (!$fs_type || $fs_type ne $_->{fs_type}) {
+ log::l("setting toFormatUnsure for $_->{device} because <$_->{fs_type}> ne <$fs_type>");
+ $_->{toFormatUnsure} = 1;
+ }
}
}
}