diff options
| author | Bobby <[email protected]> | 2026-03-25 15:28:06 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-03-25 15:28:06 +0530 |
| commit | aec48b60740d9ea7060da6d494e3cf95b1aa8e18 (patch) | |
| tree | c29fcc1118d42bd5bcc987b02a264db6987e0f62 | |
| parent | a23145402816a6d8b630ca308dc56090e8bd8217 (diff) | |
| download | akiba-aec48b60740d9ea7060da6d494e3cf95b1aa8e18.tar.xz akiba-aec48b60740d9ea7060da6d494e3cf95b1aa8e18.zip | |
refactor: Simplify installation step handling in build process
| -rw-r--r-- | hikari/build.zig | 5 |
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(©_step.step); - - b.default_step = install_step; + b.getInstallStep().dependOn(©_step.step); } |
