mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
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:
parent
8cb09db4e3
commit
3a6ef6ffe1
@ -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(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user