Skip to content

Commit 1208cf6

Browse files
committed
Don't buffer the output
1 parent 848f14d commit 1208cf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/setupCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function setupCommands(context: ExtensionContext) {
5858
let cmd = `${path} cli --sketch="${dirname(resource.fsPath)}" --run`;
5959
if (process.platform === "win32") {
6060
// on windows we need to pipe stderr to stdout and convert to string
61-
cmd += ` 2>&1 | Out-String`;
61+
cmd += ` 2>&1`;
6262
}
6363

6464
terminal.sendText(cmd, true);

0 commit comments

Comments
 (0)