From 30d46261b791a1a916e30e60814b39c7ee994a74 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Thu, 20 Mar 2025 08:53:47 -0700 Subject: [PATCH] use updated build system for model path --- build.zig | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/build.zig b/build.zig index 658934e..5cb2dfd 100644 --- a/build.zig +++ b/build.zig @@ -114,21 +114,10 @@ pub fn build(b: *Builder) !void { cg_exe.root_module.addImport("smithy", smithy_dep.module("smithy")); var cg_cmd = b.addRunArtifact(cg_exe); cg_cmd.addArg("--models"); - const hash = hash_blk: { - for (b.available_deps) |dep| { - const dep_name = dep.@"0"; - const dep_hash = dep.@"1"; - if (std.mem.eql(u8, dep_name, "models")) - break :hash_blk dep_hash; - } - return error.DependencyNamedModelsNotFoundInBuildZigZon; - }; cg_cmd.addArg(try std.fs.path.join( b.allocator, &[_][]const u8{ - b.graph.global_cache_root.path.?, - "p", - hash, + try b.dependency("models", .{}).path("").getPath3(b, null).toString(b.allocator), models_subdir, }, ));