| author | |
| committer | |
| log | a4b1242f0aeaf785f6b05cb843bb2efc0e6e702d |
| tree | 5a06caeaa919992e9575d02260a131e091599a6d |
| parent | 48723113642f553db5dda1020eeb32a0e9df9cc0 |
Fixes #50541 files changed, 3 insertions(+), 0 deletions(-)
lib/std/build.zig+3| ... | ... | @@ -2155,6 +2155,9 @@ pub const LibExeObjStep = struct { |
| 2155 | 2155 | var src_dir = try std.fs.cwd().openDir(build_output_dir, .{ .iterate = true }); |
| 2156 | 2156 | defer src_dir.close(); |
| 2157 | 2157 | |
| 2158 | // Create the output directory if it doesn't exist. | |
| 2159 | try std.fs.cwd().makePath(output_dir); | |
| 2160 | ||
| 2158 | 2161 | var dest_dir = try std.fs.cwd().openDir(output_dir, .{}); |
| 2159 | 2162 | defer dest_dir.close(); |
| 2160 | 2163 |