Skip to content

Commit 05f0d16

Browse files
committed
Add parentheses to nullish coalescing expression for clarity
1 parent ce1b679 commit 05f0d16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/server/src/processRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export async function runProcess(
140140
cwd: options.cwd,
141141
env: options.env,
142142
stdio: "pipe",
143-
shell: options.shell ?? process.platform === "win32",
143+
shell: options.shell ?? (process.platform === "win32"),
144144
});
145145

146146
let stdout = "";

0 commit comments

Comments
 (0)