Skip to content

Commit

Permalink
Ignore failure in Watch.init and just return
Browse files Browse the repository at this point in the history
  • Loading branch information
mocompute committed Nov 7, 2024
1 parent 1b31950 commit 5d01e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build_runner/0.12.0.zig
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ pub fn main() !void {
else => false,
};
if (!watch_suported) return;
var w = try Watch.init();
var w = Watch.init() catch return;

var step_stack = try stepNamesToStepStack(gpa, builder, targets.items);

Expand Down

0 comments on commit 5d01e5b

Please sign in to comment.