| author | |
| committer | |
| log | 3a6ef6ffe1258eda043bb6a44237cf980b5d7833 |
| tree | 6b5483112e2384443fa6262bf1a0bfa89faff54c |
| parent | 8cb09db4e357c265ef3465fd736d36366d37a0a3 |
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/main.zig+3| ... | @@ -4230,6 +4230,9 @@ fn serveUpdateResults(s: *Server, comp: *Compilation) !void { | ... | @@ -4230,6 +4230,9 @@ fn serveUpdateResults(s: *Server, comp: *Compilation) !void { |
| 4230 | }); | 4230 | }); |
| 4231 | return; | 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 | fn runOrTest( | 4238 | fn runOrTest( |