Commit 6baed483 authored by sanana's avatar sanana Committed by Masum Reza
Browse files

limine-install: fix profile enumeration

Fixes #425158.
parent 3990bc30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -274,7 +274,7 @@ def install_bootloader() -> None:
    profiles = [('system', get_gens())]

    for profile in get_profiles():
        profiles += (profile, get_gens(profile))
        profiles += [(profile, get_gens(profile))]

    timeout = config('timeout')
    editor_enabled = 'yes' if config('enableEditor') else 'no'