diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-23 00:55:30 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-23 00:55:30 +0100 |
commit | fc4841d88a50e0d2e3f81dbb175a91c288cc56e3 (patch) | |
tree | b4ecd5d2b9068e243d4fbad6242c53294b701f28 | |
parent | Tokenizer: Improve Token type (diff) | |
download | interpreter-fc4841d88a50e0d2e3f81dbb175a91c288cc56e3.tar.gz interpreter-fc4841d88a50e0d2e3f81dbb175a91c288cc56e3.tar.bz2 interpreter-fc4841d88a50e0d2e3f81dbb175a91c288cc56e3.zip |
Disable caching of zig build examples
-rw-r--r-- | build.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build.zig b/build.zig index b7e63d6..ea79181 100644 --- a/build.zig +++ b/build.zig @@ -102,6 +102,7 @@ pub fn build(b: *std.Build) !void { const run_example = b.addSystemCommand(&.{ "zig", "build", "run", "--", example_path }); run_example.setName(b.fmt("{s}", .{example_path})); run_example.expectExitCode(0); + run_example.has_side_effects = true; examples_step.dependOn(&run_example.step); } } |