diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-18 04:20:51 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-18 04:45:07 +0200 |
commit | 275d064ad3b432c61bd16f92d8df69b8c4e71c71 (patch) | |
tree | ad6e83593284db8cdcac268afeedc7ac5f8f1847 | |
parent | 41e7676d8b316a5a7425cd9d9ee433f52d6a338d (diff) | |
download | drakx-275d064ad3b432c61bd16f92d8df69b8c4e71c71.tar drakx-275d064ad3b432c61bd16f92d8df69b8c4e71c71.tar.gz drakx-275d064ad3b432c61bd16f92d8df69b8c4e71c71.tar.bz2 drakx-275d064ad3b432c61bd16f92d8df69b8c4e71c71.tar.xz drakx-275d064ad3b432c61bd16f92d8df69b8c4e71c71.zip |
perl_checker cleanup
-rw-r--r-- | perl-install/fs/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index 5133cae2a..bd5f99b7e 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -67,7 +67,7 @@ sub check_hds_boot_and_root { my ($all_hds, $fstab) = @_; fs::get::root_($fstab) or die "Oops, no root partition"; - if ( is_uefi() && !fs::get::has_mntpoint("/boot/EFI", $all_hds)) { + if (is_uefi() && !fs::get::has_mntpoint("/boot/EFI", $all_hds)) { die N("You must have a ESP FAT32 partition mounted in /boot/EFI"); } } |