mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 19:20:47 -05:00
Merge pull request #313 from chrboesch/colors
Changed error text to bold.
This commit is contained in:
commit
79f2b62774
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue