From b915c61fee5314a75e003b82ebbf0de5d508bb21 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 12 Apr 2024 14:31:18 -0700 Subject: [PATCH] build: fix broken install header call for Linux --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 491142831..9105be0c3 100644 --- a/build.zig +++ b/build.zig @@ -515,7 +515,7 @@ pub fn build(b: *std.Build) !void { // Copy our ghostty.h to include. const header_install = b.addInstallHeaderFile( - "include/ghostty.h", + .{ .path = "include/ghostty.h" }, "ghostty.h", ); b.getInstallStep().dependOn(&header_install.step);