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 20:55:40 +0300
committerMartin Aeschlimann <martinae@microsoft.com>2022-02-02 20:55:49 +0300
commitfbdc009642ceffecb5f69a3bfdc78dd1124d64b5 (patch)
treea955b2914646fec793d0790d8cc71351b3194a0b /scripts
parente52c81e783999d914a6a5cd0627c4940eb772ccb (diff)
fix missing semicolon
Diffstat (limited to 'scripts')
-rw-r--r--scripts/code-server.js2
-rw-r--r--scripts/code-web.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/code-server.js b/scripts/code-server.js
index 8b8deef7bfc..f4d34131cb3 100644
--- a/scripts/code-server.js
+++ b/scripts/code-server.js
@@ -33,7 +33,7 @@ function main() {
' --launch Opens a browser'
);
startServer(['--help']);
- return
+ return;
}
const serverArgs = process.argv.slice(2).filter(v => v !== '--launch');
diff --git a/scripts/code-web.js b/scripts/code-web.js
index 3a3e9017b4d..f12e6b9d34e 100644
--- a/scripts/code-web.js
+++ b/scripts/code-web.js
@@ -62,7 +62,7 @@ async function main() {
if (args['playground'] || args['_'].length === 0) {
serverArgs.push('--extensionPath', WEB_DEV_EXTENSIONS_ROOT);
serverArgs.push('--folder-uri', 'memfs:///sample-folder');
- await ensureWebDevExtensions(args['verbose'])
+ await ensureWebDevExtensions(args['verbose']);
}
let openSystemBrowser = false;
@@ -77,7 +77,7 @@ async function main() {
serverArgs.push('--sourcesPath', APP_ROOT);
- serverArgs.push(...process.argv.slice(2).filter(v => v !== '--playground'))
+ serverArgs.push(...process.argv.slice(2).filter(v => v !== '--playground'));
startServer(serverArgs);