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 e1af0ee commit 2283000Copy full SHA for 2283000
index.js
@@ -192,7 +192,8 @@ const baseOpen = async options => {
192
options.target = await convertWslPathToWindows(options.target);
193
}
194
195
- const encodedArguments = ['Start'];
+ // Suppress PowerShell progress messages that are written to stderr
196
+ const encodedArguments = ['$ProgressPreference = \'SilentlyContinue\';', 'Start'];
197
198
if (options.wait) {
199
encodedArguments.push('-Wait');
0 commit comments