aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2026-03-25 15:28:06 +0530
committerBobby <[email protected]>2026-03-25 15:28:06 +0530
commitaec48b60740d9ea7060da6d494e3cf95b1aa8e18 (patch)
treec29fcc1118d42bd5bcc987b02a264db6987e0f62
parenta23145402816a6d8b630ca308dc56090e8bd8217 (diff)
downloadakiba-aec48b60740d9ea7060da6d494e3cf95b1aa8e18.tar.xz
akiba-aec48b60740d9ea7060da6d494e3cf95b1aa8e18.zip
refactor: Simplify installation step handling in build process
-rw-r--r--hikari/build.zig5
1 files changed, 1 insertions, 4 deletions
diff --git a/hikari/build.zig b/hikari/build.zig
index 57eab76..6c901fb 100644
--- a/hikari/build.zig
+++ b/hikari/build.zig
@@ -26,8 +26,5 @@ pub fn build(b: *std.Build) void {
);
copy_step.step.dependOn(&hikari.step);
- const install_step = b.step("install", "Build and install Hikari");
- install_step.dependOn(&copy_step.step);
-
- b.default_step = install_step;
+ b.getInstallStep().dependOn(&copy_step.step);
}