Fixes #140997: Move server entry points to src/

This commit is contained in:
Alex Dima
2022-01-20 09:31:00 +01:00
parent 12f9c5fc6d
commit 3b5afe84e8
15 changed files with 28 additions and 28 deletions

View File

@@ -107,7 +107,7 @@ export function loadConnectionTable(stdout: string): Record<string, string>[] {
function knownExcludeCmdline(command: string): boolean {
return !!command.match(/.*\.vscode-server-[a-zA-Z]+\/bin.*/)
|| (command.indexOf('out/vs/server/main.js') !== -1)
|| (command.indexOf('out/server-main.js') !== -1)
|| (command.indexOf('_productName=VSCode') !== -1);
}