diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-07-21 11:30:51 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-07-21 11:30:51 -0400 |
commit | a637f5e45ffef0abae4bcb08725fc2c603732e55 (patch) | |
tree | 22f07de2fdef8b2726f493d7f560e0b4e6072470 /build.zig | |
parent | ee4254bcff3475e721b2e21dce6811b41be3cb68 (diff) | |
download | ziglings-a637f5e45ffef0abae4bcb08725fc2c603732e55.tar.gz ziglings-a637f5e45ffef0abae4bcb08725fc2c603732e55.tar.bz2 ziglings-a637f5e45ffef0abae4bcb08725fc2c603732e55.tar.xz ziglings-a637f5e45ffef0abae4bcb08725fc2c603732e55.zip |
Newline after PASSED so multiline results line up better
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 :( |