From 4afd20e30fe072cbb67a4e19fd1c1b1456e40072 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 23 Jan 2025 21:13:35 -0600 Subject: [PATCH] macos: fix finding the resources dir --- src/os/resourcesdir.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/os/resourcesdir.zig b/src/os/resourcesdir.zig index d2b274e87..4ef256c1a 100644 --- a/src/os/resourcesdir.zig +++ b/src/os/resourcesdir.zig @@ -23,6 +23,7 @@ pub fn resourcesDir(alloc: std.mem.Allocator) !?[]const u8 { // we've found the resources directory. const sentinel = switch (comptime builtin.target.os.tag) { .windows => "terminfo/ghostty.terminfo", + .macos => "terminfo/78/xterm-ghostty", else => "terminfo/x/xterm-ghostty", };