From ff0a48570d19df8f31190b3a6245dd393715506c Mon Sep 17 00:00:00 2001 From: Joseph mendoza Date: Sat, 21 Dec 2019 01:42:38 -0800 Subject: [PATCH] leave .efi files in efi/boot/ uncompressed on ntfs additional fox for #1381 on top of commit 8719412667776c0be98c4036ee3fb562d008e7bc --- src/iso.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iso.c b/src/iso.c index d2566828..32e3af51 100644 --- a/src/iso.c +++ b/src/iso.c @@ -1015,7 +1015,7 @@ out: fclose(fd); } else if (HAS_BOOTMGR(img_report) && enable_ntfs_compression) { // bootmgr might need to be uncompressed: https://github.com/pbatard/rufus/issues/1381 - RunCommand("compact /u bootmgr bootmgr.efi", dest_dir, TRUE); + RunCommand("compact /u bootmgr* efi/boot/*.efi", dest_dir, TRUE); } } if (p_iso != NULL)