Commit 33e4cbb20f

GethDW <gethwilliams@googlemail.com>
2023-07-31 11:27:54
std.Build.Step.WriteFile: fix call to nonexistent function
1 parent 43b8304
Changed files (1)
lib
std
Build
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.