From 635e6808f66588c5ee063cb47058e6379a315733 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 14 Jan 2024 19:39:27 -0800 Subject: [PATCH] build: fix mistaken dependency for iOS simulator lib --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index eb7dac7c8..222b8ed37 100644 --- a/build.zig +++ b/build.zig @@ -462,7 +462,7 @@ pub fn build(b: *std.Build) !void { // Add our library to zig-out const ios_sim_lib_install = b.addInstallLibFile( - ios_lib_path, + ios_sim_lib_path, "libghostty-ios-simulator.a", ); b.getInstallStep().dependOn(&ios_sim_lib_install.step);