rename remote commands to _remoteCLI

This commit is contained in:
Martin Aeschlimann
2021-01-18 16:15:09 +01:00
parent bf90bd1518
commit 97f237272c
2 changed files with 4 additions and 4 deletions

View File

@@ -157,7 +157,7 @@ export class CLIServerBase {
private async openExternal(data: OpenExternalCommandPipeArgs, res: http.ServerResponse) {
for (const uri of data.uris) {
await this._commands.executeCommand('_cli.openExternal', URI.parse(uri), { allowTunneling: true });
await this._commands.executeCommand('_remoteCLI.openExternal', URI.parse(uri), { allowTunneling: true });
}
res.writeHead(200);
res.end();
@@ -166,7 +166,7 @@ export class CLIServerBase {
private async manageExtensions(data: ExtensionManagementPipeArgs, res: http.ServerResponse) {
console.log('server: manageExtensions');
try {
const output = await this._commands.executeCommand('_cli.manageExtensions', data, { allowTunneling: true });
const output = await this._commands.executeCommand('_remoteCLI.manageExtensions', data, { allowTunneling: true });
res.writeHead(200);
res.write(output);
} catch (e) {