summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-05-30 21:45:33 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-05-30 21:45:33 +0200
commit9151557d399f1ad9e9da7326a4ee5bc5a104001b (patch)
tree57128fe7b2de316e0bb1096c31f031ca143221d7
parentb84a2f5c6941551de094f568539891428225e7f7 (diff)
Changed error text to bold.
-rw-r--r--build.zig4
1 files 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,
});
}