diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-02-13 22:09:37 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-02-13 22:09:37 -0500 |
commit | a0dede07e8e0ecf770f07dc823241db591726658 (patch) | |
tree | 01acb879d29cbcda2b525161140902f5905ef8ab | |
parent | 7aca9045637c06a0db3fa2c3f825743983a7e84d (diff) | |
download | ziglings-a0dede07e8e0ecf770f07dc823241db591726658.tar.gz ziglings-a0dede07e8e0ecf770f07dc823241db591726658.tar.bz2 ziglings-a0dede07e8e0ecf770f07dc823241db591726658.tar.xz ziglings-a0dede07e8e0ecf770f07dc823241db591726658.zip |
Emit correct output as green text indicating passed.
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -463,7 +463,7 @@ const ZiglingStep = struct { return error.InvalidOutput; } - print("{s}** PASSED **{s}\n", .{ green_text, reset_text }); + print("{s}{s}{s}\n", .{ green_text, output, reset_text }); } // The normal compile step calls os.exit, so we can't use it as a library :( |