Skip to content

Commit 97b673e

Browse files
committed
💄
1 parent 3e1afb7 commit 97b673e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/commands/extensions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { Command } from '../commandManager';
77
import { IRemoteService } from '../services/remoteService';
88

9-
export class InstallLocalExtensionsOnRemote implements Command {
9+
export class InstallLocalExtensionsOnRemoteCommand implements Command {
1010
readonly id = 'gitpod.installLocalExtensions';
1111

1212
constructor(private readonly remoteService: IRemoteService) { }

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Configuration } from './configuration';
2323
import { RemoteService } from './services/remoteService';
2424
import { WorkspacesExplorerView } from './workspacesExplorerView';
2525
import { WorkspaceView } from './workspaceView';
26-
import { InstallLocalExtensionsOnRemote } from './commands/extensions';
26+
import { InstallLocalExtensionsOnRemoteCommand } from './commands/extensions';
2727

2828
// connect-web uses fetch api, so we need to polyfill it
2929
if (!global.fetch) {
@@ -116,7 +116,7 @@ export async function activate(context: vscode.ExtensionContext) {
116116

117117
// Register global commands
118118
commandManager.register(new SignInCommand(sessionService));
119-
commandManager.register(new InstallLocalExtensionsOnRemote(remoteService));
119+
commandManager.register(new InstallLocalExtensionsOnRemoteCommand(remoteService));
120120
commandManager.register(new ExportLogsCommand(context.logUri, notificationService, telemetryService, logger, hostService));
121121

122122
if (!context.globalState.get<boolean>(FIRST_INSTALL_KEY, false)) {

0 commit comments

Comments
 (0)