From 0600245c8391c521a53e86c623c7910d966fd059 Mon Sep 17 00:00:00 2001
From: keyb <git@keyb.moe>
Date: Sat, 28 Jun 2025 23:12:28 +0200
Subject: [PATCH] fix: upgrade cutekit to 0.9

---
 meta/plugins/cli.py   | 2 +-
 meta/plugins/hooks.py | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta/plugins/cli.py b/meta/plugins/cli.py
index 5442166..412f032 100644
--- a/meta/plugins/cli.py
+++ b/meta/plugins/cli.py
@@ -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)
 
diff --git a/meta/plugins/hooks.py b/meta/plugins/hooks.py
index 36b5102..7fa61a9 100644
--- a/meta/plugins/hooks.py
+++ b/meta/plugins/hooks.py
@@ -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