From be34dd7518d3bfe8a25eefde3e2a1e43ca502d1d Mon Sep 17 00:00:00 2001 From: goyalyashpal Date: Mon, 6 Nov 2023 19:31:42 +0000 Subject: [PATCH] build: Remove dots after "Checking", "Compiling" ... So that terminal's word detection corresponds it to a filename which can be leveraged by editors to directly open that file --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 914ccea..eda679c 100644 --- a/build.zig +++ b/build.zig @@ -281,7 +281,7 @@ const ZiglingStep = struct { fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void { resetLine(); - print("Checking {s} ...\n", .{self.exercise.main_file}); + print("Checking {s}\n", .{self.exercise.main_file}); const b = self.step.owner; @@ -376,7 +376,7 @@ const ZiglingStep = struct { } fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 { - print("Compiling {s} ...\n", .{self.exercise.main_file}); + print("Compiling {s}\n", .{self.exercise.main_file}); const b = self.step.owner; const exercise_path = self.exercise.main_file;