zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 33e4cbb20f7cac71e5feaeeeb4c7576ab4708697 (tree)
parent 43b830415368ac4fb08bf5e154a222a38baf4a24
Author: GethDW <gethwilliams@googlemail.com>
Date:   Mon, 31 Jul 2023 10:27:54 +0100

std.Build.Step.WriteFile: fix call to nonexistent function

Diffstat:
Mlib/std/Build/Step/WriteFile.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/Build/Step/WriteFile.zig b/lib/std/Build/Step/WriteFile.zig @@ -96,7 +96,7 @@ pub fn addCopyFile(wf: *WriteFile, source: std.Build.LazyPath, sub_path: []const wf.maybeUpdateName(); source.addStepDependencies(&wf.step); - return file.getLazyPath(); + return file.getPath(); } /// A path relative to the package root.