authorgravatar for sage@sagehane.comSage Hane <sage@sagehane.com> 2022-08-07 01:17:49+09:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2022-08-18 20:08:25+03:00
logf6459721e549e91858edc2e93de398e3e3cae45e
treee39e39e163bca2bec3588c06351d23d64ad39943
parentb97ae88898b181ccc99188544411ff06e88e47ec

std.build: Fix typo in `LibExeObjStep.runEmulatable`'s assertion


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

lib/std/build.zig+1-1
......@@ -1896,7 +1896,7 @@ pub const LibExeObjStep = struct {
18961896 /// When a binary cannot be ran through emulation or the option is disabled, a warning
18971897 /// will be printed and the binary will *NOT* be ran.
18981898 pub fn runEmulatable(exe: *LibExeObjStep) *EmulatableRunStep {
1899 assert(exe.kind == .exe or exe.kind == .text_exe);
1899 assert(exe.kind == .exe or exe.kind == .test_exe);
19001900
19011901 const run_step = EmulatableRunStep.create(exe.builder.fmt("run {s}", .{exe.step.name}), exe);
19021902 if (exe.vcpkg_bin_path) |path| {