From 8d07bd9218ef27203cee87f3c36b02fdd2062aee Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Fri, 8 Mar 2024 04:17:20 -0800 Subject: [PATCH] Formatting --- src/shell/interpreter.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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");