frontend server: serveUpdateResults fix

Serve empty error bundle to indicate the update is done. Otherwise the
build system, when using -fno-emit-bin, fails to detect the update is
done.
This commit is contained in:
Andrew Kelley 2024-07-15 22:03:10 -07:00
parent 8cb09db4e3
commit 3a6ef6ffe1

View File

@ -4230,6 +4230,9 @@ fn serveUpdateResults(s: *Server, comp: *Compilation) !void {
});
return;
}
// Serve empty error bundle to indicate the update is done.
try s.serveErrorBundle(std.zig.ErrorBundle.empty);
}
fn runOrTest(