remove printf debug

This commit is contained in:
Emil Lerch 2024-08-29 13:56:35 -07:00
parent 53981da7c1
commit a28c96994c
Signed by untrusted user: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -149,9 +149,7 @@ fn bootstrapLocation(package: Package) ![]const u8 {
&[_][]const u8{"p"}, &[_][]const u8{"p"},
); );
// Destination file does not exist. Write the bootstrap (after creating the directory) // Destination file does not exist. Write the bootstrap (after creating the directory)
std.fs.makeDirAbsolute(pkg_path) catch |e| { std.fs.makeDirAbsolute(pkg_path) catch {};
std.debug.print("Could not mkdir {?s}: {}\n", .{ std.fs.path.dirname(dest_path), e });
};
std.fs.makeDirAbsolute(std.fs.path.dirname(dest_path).?) catch {}; std.fs.makeDirAbsolute(std.fs.path.dirname(dest_path).?) catch {};
const write_file = try std.fs.createFileAbsolute(dest_path, .{}); const write_file = try std.fs.createFileAbsolute(dest_path, .{});
defer write_file.close(); defer write_file.close();