grub/extra

This commit is contained in:
Marc Beninca 2024-09-14 00:07:34 +02:00
parent 51b4f0f5f2
commit 2ad223fa83
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -35,6 +35,6 @@ def make_image(
if pubkey_path: if pubkey_path:
args.append(("--pubkey", pubkey_path)) args.append(("--pubkey", pubkey_path))
args.extend(modules) args.extend(modules)
if modules := MODULES.get(image_format): if extra_modules := MODULES.get(image_format):
args.extend(modules) args.extend(extra_modules)
ps.run(*args) ps.run(*args)