mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
remote cli: do not sync installed extensions
This commit is contained in:
@@ -39,7 +39,7 @@ CommandsRegistry.registerCommand('_remoteCLI.manageExtensions', async function (
|
||||
const revive = (inputs: (string | UriComponents)[]) => inputs.map(input => isString(input) ? input : URI.revive(input));
|
||||
if (Array.isArray(args.install) && args.install.length) {
|
||||
try {
|
||||
await cliService.installExtensions(revive(args.install), [], false, !!args.force, output);
|
||||
await cliService.installExtensions(revive(args.install), [], true, !!args.force, output);
|
||||
} catch (e) {
|
||||
lines.push(e.message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user