1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 18:17:03 +09:00

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
This commit is contained in:
goyalyashpal 2023-11-06 19:31:42 +00:00
parent 9e06afba5a
commit be34dd7518

View file

@ -281,7 +281,7 @@ const ZiglingStep = struct {
fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void { fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void {
resetLine(); resetLine();
print("Checking {s} ...\n", .{self.exercise.main_file}); print("Checking {s}\n", .{self.exercise.main_file});
const b = self.step.owner; const b = self.step.owner;
@ -376,7 +376,7 @@ const ZiglingStep = struct {
} }
fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 { 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 b = self.step.owner;
const exercise_path = self.exercise.main_file; const exercise_path = self.exercise.main_file;