This commit is contained in:
Marc Beninca 2024-06-12 14:48:37 +02:00
parent 0a035f2cd6
commit 73dc9598b7
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -34,6 +34,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, None): if modules := MODULES.get(image_format):
args.extend(modules) args.extend(modules)
ps.run(*args) ps.run(*args)