From 85e071a60a96681a5dccbaa2bfaad332a800a4ab Mon Sep 17 00:00:00 2001 From: AnErrupTion Date: Wed, 5 Mar 2025 22:07:18 +0100 Subject: [PATCH] Code style changes in build.zig Signed-off-by: AnErrupTion --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 601cd6e..9ea68bf 100644 --- a/build.zig +++ b/build.zig @@ -227,14 +227,14 @@ fn install_ly(allocator: std.mem.Allocator, install_config: bool) !void { const ly_lang_path = try std.fs.path.join(allocator, &[_][]const u8{ dest_directory, config_directory, "/ly/lang" }); std.fs.cwd().makePath(ly_lang_path) catch { - std.debug.print("warn: {s} already exists as a directory.\n", .{ ly_lang_path }); + std.debug.print("warn: {s} already exists as a directory.\n", .{ly_lang_path}); }; { const exe_path = try std.fs.path.join(allocator, &[_][]const u8{ dest_directory, prefix_directory, "/bin" }); if (!std.mem.eql(u8, dest_directory, "")) { std.fs.cwd().makePath(exe_path) catch { - std.debug.print("warn: {s} already exists as a directory.\n", .{ exe_path }); + std.debug.print("warn: {s} already exists as a directory.\n", .{exe_path}); }; }