Skip to content

Commit

Permalink
fix: Close #164414, correct transparent transmission folder-uri (#164415
Browse files Browse the repository at this point in the history
)
  • Loading branch information
yiliang114 authored Oct 24, 2022
1 parent b757c8e commit ac0c034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/code-web.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function main() {
if (args['port'] === undefined) {
serverArgs.push('--port', PORT);
}
if (args['playground'] === true || (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']);
Expand Down

0 comments on commit ac0c034

Please sign in to comment.