FIX typo for boot order

This commit is contained in:
Nathan Dwarshuis 2022-07-25 14:21:45 -04:00
parent 734661e93a
commit fc8f0a823b
1 changed files with 1 additions and 1 deletions

View File

@ -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():