Skip to content

Commit 46b18a3

Browse files
authored
Fix casing to avoid vsce package issue (#2608)
Fix issue with 'vsce package' automatically converting the filepath to lowercase internally.
1 parent 9a0a39d commit 46b18a3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
File renamed without changes.

source/vscode/src/changelog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function registerChangelogCommand(
1515
vscode.commands.registerCommand("qsharp-vscode.showChangelog", async () => {
1616
const changelogUri = vscode.Uri.joinPath(
1717
context.extensionUri,
18-
"CHANGELOG.md",
18+
"changelog.md",
1919
);
2020
await vscode.commands.executeCommand(
2121
"markdown.showPreview",

0 commit comments

Comments
 (0)