Skip to content

Commit 962e01f

Browse files
committed
chore: do not spam console w/ taskkill messages
1 parent 141583c commit 962e01f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/processLauncher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export async function launchProcess(options: LaunchProcessOptions): Promise<Laun
164164
// Force kill the browser.
165165
try {
166166
if (process.platform === 'win32')
167-
childProcess.execSync(`taskkill /pid ${spawnedProcess.pid} /T /F`);
167+
childProcess.execSync(`taskkill /pid ${spawnedProcess.pid} /T /F`, { stdio: 'ignore' });
168168
else
169169
process.kill(-spawnedProcess.pid, 'SIGKILL');
170170
} catch (e) {

0 commit comments

Comments
 (0)