diff --git a/dot_bin/executable_efi-update b/dot_bin/executable_efi-update index dfb49fc..8a10d16 100644 --- a/dot_bin/executable_efi-update +++ b/dot_bin/executable_efi-update @@ -116,7 +116,7 @@ def set_order(entries): """Set the boot order according to the order of ENTRIES""" call_efibootmgr("-O") order = ",".join([str(i) for i in range(0, len(entries))]) - call_efibootmgr(order) + call_efibootmgr(["-o", order]) def main():