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:
authorMartin Aeschlimann <martinae@microsoft.com>2022-02-02 19:53:24 +0300
committerMartin Aeschlimann <martinae@microsoft.com>2022-02-02 19:53:24 +0300
commit92cecf104883e6e9666afb61fca65f4163239934 (patch)
tree0bff70e46777ff8c71738c8fd4be035c03200117 /scripts
parent47dbe8bbf6dde902a35fbfcd0e533243b91b3024 (diff)
code-web fix --help
Diffstat (limited to 'scripts')
-rw-r--r--scripts/code-web.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/code-web.js b/scripts/code-web.js
index 6603f67ec40..3a3e9017b4d 100644
--- a/scripts/code-web.js
+++ b/scripts/code-web.js
@@ -41,10 +41,10 @@ async function main() {
if (args.help) {
console.log(
'./scripts/code-web.sh|bat [options]\n' +
- ' --playground Include the vscode-web-playground extension\n'
+ ' --playground Include the vscode-web-playground extension (added by default if no folderPath is provided)\n'
);
startServer(['--help']);
- process.exit(0);
+ return;
}
const serverArgs = [];