Commit e712d5f03e

Kirk Scheibelhut <kjs@scheibo.com>
2023-02-01 19:15:58
remove reference to removed addTestExe
1 parent 72a7e3d
Changed files (1)
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 = {} },
         },