aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-02-13 22:09:37 -0500
committerDave Gauer <dave@ratfactor.com>2021-02-13 22:09:37 -0500
commita7e101cd05204557519bef146300feb63e8be45f (patch)
tree01acb879d29cbcda2b525161140902f5905ef8ab
parent96cb465fb855106d92d391e35923478abecd6098 (diff)
Emit correct output as green text indicating passed.
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
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 :(