build: fix broken install header call for Linux

This commit is contained in:
Mitchell Hashimoto
2024-04-12 14:31:18 -07:00
parent fc4284e406
commit b915c61fee

View File

@ -515,7 +515,7 @@ pub fn build(b: *std.Build) !void {
// Copy our ghostty.h to include. // Copy our ghostty.h to include.
const header_install = b.addInstallHeaderFile( const header_install = b.addInstallHeaderFile(
"include/ghostty.h", .{ .path = "include/ghostty.h" },
"ghostty.h", "ghostty.h",
); );
b.getInstallStep().dependOn(&header_install.step); b.getInstallStep().dependOn(&header_install.step);