Skip to content

Commit

Permalink
build: fix the description of the named_install step
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
perillo committed Apr 5, 2023
1 parent 9354de0 commit 77436a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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}));
Expand Down

0 comments on commit 77436a1

Please sign in to comment.