cli/crash-report: make it simpler (uglier, honestly)

This commit is contained in:
Mitchell Hashimoto
2024-09-10 21:14:55 -07:00
parent 4e16624676
commit 11c3ca69f5
3 changed files with 49 additions and 51 deletions

6
src/cli/tui.zig Normal file
View File

@@ -0,0 +1,6 @@
const builtin = @import("builtin");
pub const can_pretty_print = switch (builtin.os.tag) {
.ios, .tvos, .watchos => false,
else => true,
};