aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorManlio Perillo <[email protected]>2023-04-05 11:16:23 +0200
committerManlio Perillo <[email protected]>2023-04-05 21:19:17 +0200
commit75a1600626b3352b516c0dc3b42380f5ab0db025 (patch)
treec6fbec6b7d07390be080d9dcb2476796f9130fa1 /build.zig
parent36e3f577ca9d4ae0eca74a31e5a9da8b248111ce (diff)
downloadziglings-75a1600626b3352b516c0dc3b42380f5ab0db025.tar.xz
ziglings-75a1600626b3352b516c0dc3b42380f5ab0db025.zip
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
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files 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}));