Merge remote-tracking branch 'origin/main' into shaping-positions

This commit is contained in:
Jacob Sandlund
2025-12-17 10:02:06 -05:00

View File

@@ -2048,6 +2048,12 @@ fn resolvePathForOpening(
};
const resolved = try std.fs.path.resolve(self.alloc, &.{ terminal_pwd, path });
std.fs.accessAbsolute(resolved, .{}) catch {
self.alloc.free(resolved);
return null;
};
return resolved;
}