macos: fix finding the resources dir

This commit is contained in:
Jeffrey C. Ollie
2025-01-23 21:13:35 -06:00
parent 95327bff18
commit 4afd20e30f

View File

@ -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",
};