Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Bierner <matb@microsoft.com>2022-02-03 21:39:30 +0300
committerMatt Bierner <matb@microsoft.com>2022-02-03 21:39:30 +0300
commite02179a43c4d9b73c3e1f622160d52bdf4d0baec (patch)
tree7eac17cc4006410d88b125fac1de3692cb3f91f2 /scripts
parent1b429e743255d7b5a628c8267da990dae74a865c (diff)
Use --browserType as fallback in code-web
Diffstat (limited to 'scripts')
-rw-r--r--scripts/code-web.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/code-web.js b/scripts/code-web.js
index 52c60dce5c6..2d8a09a7c74 100644
--- a/scripts/code-web.js
+++ b/scripts/code-web.js
@@ -68,7 +68,7 @@ async function main() {
let openSystemBrowser = false;
if (!args['browser'] && !args['browserType']) {
- serverArgs.push('--browser', 'none');
+ serverArgs.push('--browserType', 'none');
openSystemBrowser = true;
}