authorgravatar for gethwilliams@googlemail.comGethDW <gethwilliams@googlemail.com> 2023-07-31 10:27:54+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-07-31 14:23:57+02:00
log33e4cbb20f7cac71e5feaeeeb4c7576ab4708697
treeaee89f2828615789d11e2dcb57d118d8bb34be4e
parent43b830415368ac4fb08bf5e154a222a38baf4a24

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


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build/Step/WriteFile.zig+1-1
......@@ -96,7 +96,7 @@ pub fn addCopyFile(wf: *WriteFile, source: std.Build.LazyPath, sub_path: []const
9696
9797 wf.maybeUpdateName();
9898 source.addStepDependencies(&wf.step);
99 return file.getLazyPath();
99 return file.getPath();
100100}
101101
102102/// A path relative to the package root.