From fc8f0a823bb6a422bae928ebaa919e7ad4448924 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Mon, 25 Jul 2022 14:21:45 -0400 Subject: [PATCH] FIX typo for boot order --- dot_bin/executable_efi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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():