aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorManlio Perillo <[email protected]>2023-05-13 22:03:38 +0200
committerManlio Perillo <[email protected]>2023-05-14 17:22:03 +0200
commit1c184c2681d54f71f91d956243522820f4673c5b (patch)
tree409f3ead896c03f7826ab285bb51dfd15501d3bb /build.zig
parentc393debe44e5c0bab954f160a91af3ecbe8df4f3 (diff)
downloadziglings-1c184c2681d54f71f91d956243522820f4673c5b.tar.xz
ziglings-1c184c2681d54f71f91d956243522820f4673c5b.zip
build: remove the install and uninstall steps
They are no longer used.
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index c87742e..6f34235 100644
--- a/build.zig
+++ b/build.zig
@@ -119,6 +119,9 @@ pub fn build(b: *Build) !void {
reset_text = "\x1b[0m";
}
+ // Remove the standard install and uninstall steps.
+ b.top_level_steps = .{};
+
const healed = b.option(bool, "healed", "Run exercises from patches/healed") orelse
false;
const override_healed_path = b.option([]const u8, "healed-path", "Override healed path");