Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions lib/compiler/build_runner.zig
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,7 @@ pub fn main() !void {

if (!watch) return cleanExit();

switch (builtin.os.tag) {
.linux, .windows => {},
else => fatal("--watch not yet implemented for {s}", .{@tagName(builtin.os.tag)}),
}
if (!Watch.have_impl) fatal("--watch not yet implemented for {s}", .{@tagName(builtin.os.tag)});

try w.update(gpa, run.step_stack.keys());

Expand Down
Loading
Loading