authorgravatar for kjs@scheibo.comKirk Scheibelhut <kjs@scheibo.com> 2023-02-01 10:15:58-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-02-01 22:52:32-05:00
loge712d5f03e6e3ddde6a4a6f7d2d82e786efd543a
tree4cb06da927128936e9d9ddaa6c92c55edc89f764
parent72a7e3dc5e3d2128f4d95b7ba9554ea2e6e35139

remove reference to removed addTestExe


1 files changed, 1 insertions(+), 1 deletions(-)

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