build 💄

This commit is contained in:
Benjamin Pasero
2019-09-04 08:55:20 +02:00
parent e5db2c31e4
commit 4cd5047073
6 changed files with 21 additions and 7 deletions
@@ -91,7 +91,7 @@ export function activate(context: vscode.ExtensionContext) {
extHostProcess = cp.spawn(serverCommandPath, commandArgs, { env, cwd: vscodePath });
} else {
const serverCommand = process.platform === 'win32' ? 'server.cmd' : 'server.sh';
let serverLocation = env['VSCODE_REMOTE_SERVER_PATH']; // support environment
let serverLocation = env['VSCODE_REMOTE_SERVER_PATH']; // support environment variable to specify location of server on disk
if (!serverLocation) {
const serverBin = path.join(remoteDataDir, 'bin');
progress.report({ message: 'Installing VSCode Server' });