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.
1 files changed, 3 insertions(+), 0 deletions(-)
src
src/main.zig+3
| ... | ... | @@ -4230,6 +4230,9 @@ fn serveUpdateResults(s: *Server, comp: *Compilation) !void { |
| 4230 | 4230 | }); |
| 4231 | 4231 | return; |
| 4232 | 4232 | } |
| 4233 | |
| 4234 | // Serve empty error bundle to indicate the update is done. |
| 4235 | try s.serveErrorBundle(std.zig.ErrorBundle.empty); |
| 4233 | 4236 | } |
| 4234 | 4237 | |
| 4235 | 4238 | fn runOrTest( |