commit df9ff9cfa8a4f120cb075d765aa68556394390ec
parent d73cfefed5e45fec91a422cd87054611ff711b30
Author: bfredl <bjorn.linse@gmail.com>
Date: Fri, 22 Aug 2025 19:40:38 +0200
Merge pull request #35434 from bfredl/zigtag2
fix(build): workaround errors in zig build due to stale cache
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/runtime/gen_runtime.zig b/runtime/gen_runtime.zig
@@ -31,6 +31,7 @@ pub fn nvim_gen_runtime(
const file = gen_step.addOutputFileArg("tags");
_ = gen_runtime.addCopyFile(file, "doc/tags");
gen_step.addDirectoryArg(b.path("runtime/doc"));
+ gen_step.has_side_effects = true; // workaround: missing detection of input changes
}
return gen_runtime;