diff options
-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 4e2970cce..6d2c83a7c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -222,7 +222,7 @@ sub doPartitionDisks { my ($o) = @_; if ($o->{partitioning}{auto_allocate}) { - fsedit::auto_allocate($o->{all_hds}, $o->{partitions}); + catch_cdie { fsedit::auto_allocate($o->{all_hds}, $o->{partitions}) } sub { 1 }; } } |