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-04 18:52:42 +0300
committerMartin Aeschlimann <martinae@microsoft.com>2022-02-04 18:52:52 +0300
commit61ff43bafe4b2e8cd69f18cfe4df691579970522 (patch)
treeef91dbb70feec9aaaebc313b30eb875fb28edfd6 /scripts
parent59d4161395709d1316fd070adfc5ce29adaac61e (diff)
code web script fix
Diffstat (limited to 'scripts')
-rw-r--r--scripts/code-web.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/code-web.js b/scripts/code-web.js
index a232c2b3eb9..5130e27b9b9 100644
--- a/scripts/code-web.js
+++ b/scripts/code-web.js
@@ -59,8 +59,7 @@ async function main() {
if (args['port'] === undefined) {
serverArgs.push('--port', PORT);
}
-
- if (args['playground'] === true || (args['playground'] === undefined && args['_'].length === 0 && !args['--folder-uri'])) {
+ if (args['playground'] === true || (args['_'].length === 0 && !args['--folder-uri'])) {
serverArgs.push('--extensionPath', WEB_DEV_EXTENSIONS_ROOT);
serverArgs.push('--folder-uri', 'memfs:///sample-folder');
await ensureWebDevExtensions(args['verbose']);