We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950d8ee commit b914632Copy full SHA for b914632
src/language/dafnyInstallation.ts
@@ -174,7 +174,8 @@ export class DafnyInstaller {
174
}
175
176
public isCustomInstallation(): boolean {
177
- return getConfiguredLanguageServerRuntimePath() != null;
+ const configuredLanguageServerRuntimePath = getConfiguredLanguageServerRuntimePath();
178
+ return configuredLanguageServerRuntimePath != null && configuredLanguageServerRuntimePath !== '';
179
180
181
public async isLanguageServerRuntimeAccessible(): Promise<boolean> {
0 commit comments