From 9313b95dfd611b6bef24916d2df4f83ee81f5ae6 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 22 Dec 2017 09:23:47 -0400 Subject: fix inversion --- src/Propellor/Property/Grub.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Propellor/Property/Grub.hs b/src/Propellor/Property/Grub.hs index a23f12e4..5cb9077d 100644 --- a/src/Propellor/Property/Grub.hs +++ b/src/Propellor/Property/Grub.hs @@ -76,8 +76,8 @@ boots dev = property' ("grub boots " ++ dev) $ \w -> do targetParam :: GrubTarget -> String targetParam t = "--target=" ++ case t of PC -> "i386-pc" - EFI64 -> "i386-efi" - EFI32 -> "x86_64-efi" + EFI32 -> "i386-efi" + EFI64 -> "x86_64-efi" Coreboot -> "i386-coreboot" Xen -> "x86_64-xen" -- cgit v1.2.3