diff options
-rwxr-xr-x | live/draklive-install/draklive-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/live/draklive-install/draklive-install b/live/draklive-install/draklive-install index 526a166b2..2c9202a77 100755 --- a/live/draklive-install/draklive-install +++ b/live/draklive-install/draklive-install @@ -174,7 +174,7 @@ sub doPartitionDisksAfter { my ($o) = @_; my $hds = $o->{all_hds}{hds}; partition_table::write($_) foreach @$hds; - if (grep { $_->{rebootNeeded} } @$hds) { + if (any { $_->{rebootNeeded} } @$hds) { #- install_steps_interactive::rebootNeeded $o->ask_warn('', N("You need to reboot for the partition table modifications to take place")); $o->exit(0); |