remove install extension

This commit is contained in:
Sandeep Somavarapu 2021-02-04 20:48:25 +01:00
parent 3bd244bcf2
commit 63310d91d3

View file

@ -104,7 +104,6 @@ export async function launch(userDataDir: string, _workspacePath: string, codeSe
const args = ['--browser', 'none', '--driver', 'web', '--extensions-dir', extPath];
let serverLocation: string | undefined;
if (codeServerPath) {
args.push(...['--install-builtin-extension', 'github.vscode-pull-request-github', '--start-server']);
serverLocation = join(codeServerPath, `server.${process.platform === 'win32' ? 'cmd' : 'sh'}`);
console.log(`Starting built server from '${serverLocation}'`);
} else {