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:
authorsurajteggi <93778410+surajteggi@users.noreply.github.com>2022-02-04 15:21:12 +0300
committerGitHub <noreply@github.com>2022-02-04 15:21:12 +0300
commitbaf162329b1166afeb1a0f1f06f91ca1f0977906 (patch)
treee1dc1fa9bdd14ee5999a8ba8a91a05228a74b865 /scripts
parent4d43287a81fd41cf9775c5c631401f37595d1d3f (diff)
Update code-web.js
Fix typo
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 2e4b1596dac..ceee8aa4283 100644
--- a/scripts/code-web.js
+++ b/scripts/code-web.js
@@ -74,7 +74,7 @@ async function main() {
serverArgs.push('--sourcesPath', APP_ROOT);
- serverArgs.push(...process.argv.slice(2).filter(v => !v.startsWith('--playground') && v !== '--no-playgorund'));
+ serverArgs.push(...process.argv.slice(2).filter(v => !v.startsWith('--playground') && v !== '--no-playground'));
startServer(serverArgs);