mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 19:20:47 -05:00
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/25
This commit is contained in:
commit
afe5511455
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue