Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 1f09231

Browse files
committed
Fix
1 parent 6a47d9c commit 1f09231

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/oali.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -649,11 +649,11 @@ if using the USB key disk layout|}
649649
then
650650
File.filter_map_lines ~file:fstab_path (fun s ->
651651
if CCString.mem ~sub:Config.boot_dir s
652-
&& CCString.mem ~sub:Config.efi_dir s
652+
|| CCString.mem ~sub:Config.efi_dir s
653653
then
654-
[ s ]
655-
else
656654
[ "# " ^ s ]
655+
else
656+
[ s ]
657657
);
658658
config);
659659
reg ~name:"Install keyfile for /"

0 commit comments

Comments
 (0)