Fix minor error: std.ChildProcess.exec() already rename to run()

This commit is contained in:
jimying
2023-12-04 16:07:21 +08:00
committed by Andrew Kelley
parent a30147c992
commit 89d4ac6289

View File

@@ -1797,7 +1797,7 @@ fn runOneCase(
try comp.makeBinFileExecutable();
while (true) {
break :x std.ChildProcess.exec(.{
break :x std.ChildProcess.run(.{
.allocator = allocator,
.argv = argv.items,
.cwd_dir = tmp.dir,