fix(changelog-command): fixing ext name for markdown (#164)
This commit is contained in:
parent
93b710945f
commit
974ce25a6d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ function splitVersion(input: string): { major: number, minor: number, patch: num
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showChangelog(): void {
|
export function showChangelog(): void {
|
||||||
let extname: string = 'Microsoft.vscode-markdown';
|
let extname: string = 'vscode.markdown';
|
||||||
let md = vscode.extensions.getExtension<any>(extname);
|
let md = vscode.extensions.getExtension<any>(extname);
|
||||||
|
|
||||||
if (md === undefined) {
|
if (md === undefined) {
|
||||||
|
|
Loading…
Reference in a new issue