diff --git a/src/shell/interpreter.zig b/src/shell/interpreter.zig index 9c6be0ed43..321dfd32cb 100644 --- a/src/shell/interpreter.zig +++ b/src/shell/interpreter.zig @@ -8743,7 +8743,9 @@ pub const Interpreter = struct { if (should_continue) { if (this.readers.len() > 0) { this.setReading(true); - if (bun.Environment.isPosix) this.reader.registerPoll() else switch (this.reader.startWithCurrentPipe()) { + if (bun.Environment.isPosix) + this.reader.registerPoll() + else switch (this.reader.startWithCurrentPipe()) { .err => |e| { const writer = std.io.getStdOut().writer(); e.format("Yoops ", .{}, writer) catch @panic("oops");