Skip to content

Commit

Permalink
fix typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed May 27, 2014
1 parent 2b09b95 commit 456eb70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/BootGRUB2EFI.rb
Expand Up @@ -60,9 +60,9 @@ def Write

# something with PMBR needed
if BootCommon.pmbr_action
efi_disk = Storage.GetEntryForMountPoint("/boot/efi")["device"]
efi_disk ||= Storage.GetEntryForMountPoint("/boot")["device"]
efi_disk ||= Storage.GetEntryForMountPoint("/")["device"]
efi_disk = Storage.GetEntryForMountpoint("/boot/efi")["device"]
efi_disk ||= Storage.GetEntryForMountpoint("/boot")["device"]
efi_disk ||= Storage.GetEntryForMountpoint("/")["device"]

pmbr_setup(BootCommon.pmbr_action, efi_disk)
end
Expand Down

0 comments on commit 456eb70

Please sign in to comment.