aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2023-05-25 15:15:28 +0200
committerGitHub <[email protected]>2023-05-25 15:15:28 +0200
commit763cdb10ca796a6942a1ff1f6187eb8b23ae1b03 (patch)
treec6896b9c80723e5df6cb75a2f42ef3f2485581ed /build.zig
parent282c50834a9b5945f920d3cb9514b2b203e04282 (diff)
parent192bd2e803e93d2ff4b970e7a339145887669b1c (diff)
downloadziglings-763cdb10ca796a6942a1ff1f6187eb8b23ae1b03.tar.xz
ziglings-763cdb10ca796a6942a1ff1f6187eb8b23ae1b03.zip
Merge pull request #309 from pseudocc/main
change std.debug.TTY to std.io.tty
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 46a260d..6d6ab58 100644
--- a/build.zig
+++ b/build.zig
@@ -554,7 +554,7 @@ const ZiglingStep = struct {
// Print the compiler errors.
// TODO: use the same ttyconf from the builder.
- const ttyconf: std.debug.TTY.Config = if (use_color_escapes)
+ const ttyconf: std.io.tty.Config = if (use_color_escapes)
.escape_codes
else
.no_color;