Skip to content

Commit

Permalink
💄
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanp413 committed Aug 30, 2023
1 parent 3e1afb7 commit 97b673e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { Command } from '../commandManager';
import { IRemoteService } from '../services/remoteService';

export class InstallLocalExtensionsOnRemote implements Command {
export class InstallLocalExtensionsOnRemoteCommand implements Command {
readonly id = 'gitpod.installLocalExtensions';

constructor(private readonly remoteService: IRemoteService) { }
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { Configuration } from './configuration';
import { RemoteService } from './services/remoteService';
import { WorkspacesExplorerView } from './workspacesExplorerView';
import { WorkspaceView } from './workspaceView';
import { InstallLocalExtensionsOnRemote } from './commands/extensions';
import { InstallLocalExtensionsOnRemoteCommand } from './commands/extensions';

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

// Register global commands
commandManager.register(new SignInCommand(sessionService));
commandManager.register(new InstallLocalExtensionsOnRemote(remoteService));
commandManager.register(new InstallLocalExtensionsOnRemoteCommand(remoteService));
commandManager.register(new ExportLogsCommand(context.logUri, notificationService, telemetryService, logger, hostService));

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

0 comments on commit 97b673e

Please sign in to comment.