Browse Source

build: remove the install and uninstall steps

They are no longer used.
Manlio Perillo 2 years ago
parent
commit
1c184c2681
1 changed files with 3 additions and 0 deletions
  1. 3 0
      build.zig

+ 3 - 0
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");