zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit e712d5f03e6e3ddde6a4a6f7d2d82e786efd543a (tree)
parent 72a7e3dc5e3d2128f4d95b7ba9554ea2e6e35139
Author: Kirk Scheibelhut <kjs@scheibo.com>
Date:   Wed,  1 Feb 2023 10:15:58 -0800

remove reference to removed addTestExe

Diffstat:
Mlib/std/Build/InstallArtifactStep.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/Build/InstallArtifactStep.zig b/lib/std/Build/InstallArtifactStep.zig @@ -23,7 +23,7 @@ pub fn create(builder: *std.Build, artifact: *CompileStep) *InstallArtifactStep .artifact = artifact, .dest_dir = artifact.override_dest_dir orelse switch (artifact.kind) { .obj => @panic("Cannot install a .obj build artifact."), - .@"test" => @panic("Cannot install a test build artifact, use addTestExe instead."), + .@"test" => @panic("Cannot install a .test build artifact, use .test_exe instead."), .exe, .test_exe => InstallDir{ .bin = {} }, .lib => InstallDir{ .lib = {} }, },