fix: upgrade cutekit to 0.9

This commit is contained in:
Jordan ⌨️ 2025-06-28 23:12:28 +02:00
parent 01773cb062
commit 0600245c83
2 changed files with 2 additions and 3 deletions
meta/plugins

View file

@ -1,6 +1,6 @@
from cutekit import cli, model, shell, builder
@cli.command(None, "boot", "Boot the kernel inside of Qemu")
@cli.command("boot", "Boot the kernel inside of Qemu")
def _(args: model.RegistryArgs):
registry = model.Registry.use(args)

View file

@ -22,12 +22,11 @@ def build(
scope: builder.TargetScope,
components: Union[list[model.Component], model.Component, Literal["all"]] = "all",
generateCompilationDb: bool = False,
noParallel: bool = False,
) -> list[builder.ProductScope]:
for k, v in _hooks.items():
print(f"Running hook '{k}'")
v(scope)
return _original_build(scope, components, generateCompilationDb, noParallel)
return _original_build(scope, components, generateCompilationDb)
builder.build = build