aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2021-07-21 11:30:51 -0400
committerDave Gauer <[email protected]>2021-07-21 11:30:51 -0400
commit44440ace5af85be0f8af0cf37edddaa2976fd6f2 (patch)
tree22f07de2fdef8b2726f493d7f560e0b4e6072470 /build.zig
parenta6a2810b09b669574d11426083f9074ea93f71ef (diff)
downloadziglings-44440ace5af85be0f8af0cf37edddaa2976fd6f2.tar.xz
ziglings-44440ace5af85be0f8af0cf37edddaa2976fd6f2.zip
Newline after PASSED so multiline results line up better
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 70127ad..9a738a8 100644
--- a/build.zig
+++ b/build.zig
@@ -680,7 +680,7 @@ const ZiglingStep = struct {
return error.InvalidOutput;
}
- print("{s}PASSED: {s}{s}\n", .{ green_text, output, reset_text });
+ print("{s}PASSED:\n{s}{s}\n", .{ green_text, output, reset_text });
}
// The normal compile step calls os.exit, so we can't use it as a library :(