From 75a1600626b3352b516c0dc3b42380f5ab0db025 Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Wed, 5 Apr 2023 11:16:23 +0200 Subject: [PATCH] build: fix the description of the named_install step Replace the description of the named_install step from "Install {s} to zig-cache/bin" to "Copy {s} to prefix path". The latter has been adapded from the description of the builtin install step. Ad an empty line before the build_step variable, in order to improve readability. Closes #213 --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index ed5950d..e3533aa 100644 --- a/build.zig +++ b/build.zig @@ -549,8 +549,8 @@ pub fn build(b: *Build) !void { const file_path = std.fs.path.join(b.allocator, &[_][]const u8{ if (use_healed) "patches/healed" else "exercises", ex.main_file, }) catch unreachable; - const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } }); + const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } }); build_step.install(); const verify_step = ZiglingStep.create(b, ex, use_healed); @@ -561,7 +561,7 @@ pub fn build(b: *Build) !void { const run_step = build_step.run(); named_test.dependOn(&run_step.step); - const named_install = b.step(b.fmt("{s}_install", .{key}), b.fmt("Install {s} to zig-cache/bin", .{ex.main_file})); + const named_install = b.step(b.fmt("{s}_install", .{key}), b.fmt("Copy {s} to prefix path", .{ex.main_file})); named_install.dependOn(&build_step.install_step.?.step); const named_verify = b.step(key, b.fmt("Check {s} only", .{ex.main_file}));