We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484cd67 commit 6ebfdefCopy full SHA for 6ebfdef
src/hlsBinaries.ts
@@ -555,9 +555,9 @@ async function getLatestHLSfromGHCup(
555
556
let hlsBin = '';
557
if (targetGhc) {
558
- hlsBin = path.join(bindir, `haskell-language-server-${targetGhc}~${latestHlsVersion}`);
+ hlsBin = path.join(bindir, `haskell-language-server-${targetGhc}~${latestHlsVersion}${exeExt}`);
559
} else {
560
- hlsBin = path.join(bindir, `haskell-language-server-wrapper-${latestHlsVersion}`);
+ hlsBin = path.join(bindir, `haskell-language-server-wrapper-${latestHlsVersion}${exeExt}`);
561
}
562
563
if (fs.existsSync(hlsBin)) {
0 commit comments