Skip to content

Commit 40487fb

Browse files
committed
Fix the message name
1 parent e594385 commit 40487fb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/features/PowerShellFindModule.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export namespace FindModuleRequest {
88
}
99

1010
export namespace InstallModuleRequest {
11-
export const type: RequestType<string, void, void> = { get method() { return 'powerShell/InstallModule'; } };
11+
export const type: RequestType<string, void, void> = { get method() { return 'powerShell/installModule'; } };
1212
}
1313

1414
function GetCurrentTime() {
@@ -43,9 +43,7 @@ export function registerPowerShellFindModuleCommand(client: LanguageClient): voi
4343
switch (selection.label) {
4444
default :
4545
var moduleName = selection.label;
46-
47-
vscode.window.setStatusBarMessage("Installing PowerShell Module " + moduleName, 1500);
48-
46+
//vscode.window.setStatusBarMessage("Installing PowerShell Module " + moduleName, 1500);
4947
client.sendRequest(InstallModuleRequest.type, moduleName);
5048
}
5149
});

0 commit comments

Comments
 (0)