Skip to content

Commit e273989

Browse files
committed
fix build tools path stringification
1 parent 299f44b commit e273989

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub fn build(b: *std.Build) !void {
5151
// trailing slash for rsync src is important, but Zig really doesn't
5252
// want to add it, so this is what I came up with.
5353
const build_tools = b.path("build-tools");
54-
const build_tools_path = b.fmt("{any}/", .{build_tools.getPath3(b, null)});
54+
const build_tools_path = b.fmt("{f}/", .{build_tools.getPath3(b, null)});
5555
var cp_build_files = b.addSystemCommand(&.{ "rsync", "-r", build_tools_path, "v8" });
5656
cp_build_files.setCwd(root_path);
5757
cp_build_files.step.dependOn(&mkdir_v8_dir.step);

0 commit comments

Comments
 (0)