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 7049857 commit ba14d98Copy full SHA for ba14d98
src/razor/src/razorLanguageServerOptionsResolver.ts
@@ -59,7 +59,7 @@ function findLanguageServerExecutable(withinDir: string) {
59
pathWithExtension = `${fileName}.dll`;
60
}
61
62
- let fullPath = path.join(withinDir, pathWithExtension);
+ const fullPath = path.join(withinDir, pathWithExtension);
63
64
if (!fs.existsSync(fullPath)) {
65
throw new Error(
@@ -76,4 +76,4 @@ function isWindows() {
76
77
function isMacOS() {
78
return os.platform() === 'darwin';
79
-}
+}
0 commit comments