From a0dede07e8e0ecf770f07dc823241db591726658 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sat, 13 Feb 2021 22:09:37 -0500 Subject: Emit correct output as green text indicating passed. --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 3d86ece..d7e09de 100644 --- a/build.zig +++ b/build.zig @@ -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 :( -- cgit v1.2.3-ZIG