Skip to content

Commit 1d42709

Browse files
authored
Merge pull request #6212 from Cosifne/dev/shech/releaseFix
Fix case in nuspec
2 parents 1744c64 + 7798006 commit 1d42709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/createTagsTasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async function findRoslynCommitAsync(): Promise<string | null> {
7474
// Nuget package should exist under out/.nuget/ since we have run the install dependencies task.
7575
const nuspecFile = fs
7676
.readFileSync(
77-
`out/.nuget/microsoft.codeAnalysis.languageServer/${roslynVersion}/microsoft.codeAnalysis.languageServer.nuspec`
77+
`out/.nuget/microsoft.codeanalysis.languageserver/${roslynVersion}/microsoft.codeAnalysis.languageserver.nuspec`
7878
)
7979
.toString();
8080
const results = /commit="(.*)"/.exec(nuspecFile);

0 commit comments

Comments
 (0)