diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2006-02-23 12:51:51 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2006-02-23 12:51:51 +0000 |
commit | 808b09f9fd2b274cf87e825cdbe82ff954ae82be (patch) | |
tree | e4e4c2e3efcd4085341c9001f152c6ecb0beac54 /live | |
parent | 42756b7075242bedae90e2215a393901deabc0e8 (diff) | |
download | drakx-808b09f9fd2b274cf87e825cdbe82ff954ae82be.tar drakx-808b09f9fd2b274cf87e825cdbe82ff954ae82be.tar.gz drakx-808b09f9fd2b274cf87e825cdbe82ff954ae82be.tar.bz2 drakx-808b09f9fd2b274cf87e825cdbe82ff954ae82be.tar.xz drakx-808b09f9fd2b274cf87e825cdbe82ff954ae82be.zip |
(doPartitionDisksAfter) perl_checker beautify
Diffstat (limited to 'live')
-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); |