about summary refs log tree commit diff
path: root/build.zig
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-23 00:55:30 +0100
committerBaitinq <[email protected]>2025-01-23 00:55:30 +0100
commita8e6d0825355fbff1aa1ec0e7b958d9bb7fe6376 (patch)
treeb4ecd5d2b9068e243d4fbad6242c53294b701f28 /build.zig
parentTokenizer: Improve Token type (diff)
downloadpry-lang-a8e6d0825355fbff1aa1ec0e7b958d9bb7fe6376.tar.gz
pry-lang-a8e6d0825355fbff1aa1ec0e7b958d9bb7fe6376.tar.bz2
pry-lang-a8e6d0825355fbff1aa1ec0e7b958d9bb7fe6376.zip
Disable caching of zig build examples
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig1
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);
         }
     }