We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80643b5 commit 0865c4dCopy full SHA for 0865c4d
client/src/setupCommands.ts
@@ -50,12 +50,12 @@ export function setupCommands(context: ExtensionContext) {
50
let path = state.selectedVersion.path;
51
if (process.platform === "win32") {
52
// on windows we need to escape spaces
53
- path = `& "${path}"`;
+ path = `& "${path}" 2>&1 | Out-String `;
54
}
55
56
// Send the command to the terminal
57
terminal.sendText(
58
- `${path} cli --sketch="${dirname(resource.fsPath)}" --run`,
+ `${path} cli --sketch="${dirname(resource.fsPath)}" --run `,
59
true
60
);
61
});
0 commit comments