From aaad6ccd93ce480e8f9bc11a6e6bddf3585f16ff Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Tue, 30 May 2023 21:45:33 +0200 Subject: [PATCH] Changed error text to bold. --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 0b39460..4ca48be 100644 --- a/build.zig +++ b/build.zig @@ -311,7 +311,7 @@ const ZiglingStep = struct { const output = trimLines(b.allocator, raw_output) catch @panic("OOM"); const exercise_output = self.exercise.output; if (!std.mem.eql(u8, output, self.exercise.output)) { - const red = red_dim_text; + const red = red_bold_text; const reset = reset_text; // Override the coloring applied by the printError method. @@ -395,7 +395,7 @@ const ZiglingStep = struct { }; print("\n{s}Edit exercises/{s} and run '{s}' again.{s}\n", .{ - red_text, path, cmd, reset_text, + red_bold_text, path, cmd, reset_text, }); }