commit 3dd1026c8bcb438228c336add7cc4014552aa05c (tree)
parent 02ba4b1678b9eca4262b2912c6e15030a2e75624
Author: Andrew Kelley <superjoe30@gmail.com>
Date: Tue, 21 Aug 2018 21:01:37 -0400
fix docs on windows
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.zig b/build.zig
@@ -19,7 +19,7 @@ pub fn build(b: *Builder) !void {
var docgen_cmd = b.addCommand(null, b.env_map, [][]const u8{
docgen_exe.getOutputPath(),
rel_zig_exe,
- "doc/langref.html.in",
+ "doc" ++ os.path.sep_str ++ "langref.html.in",
os.path.join(b.allocator, b.cache_root, "langref.html") catch unreachable,
});
docgen_cmd.step.dependOn(&docgen_exe.step);