fix informational/error messages when tools not installed/not discovered/not installable (#8679)

* fix informational/error messages
This commit is contained in:
Arvind Ranasaria
2019-12-13 18:32:20 -08:00
committed by GitHub
parent a0c3f8f614
commit 6816f2dabb
2 changed files with 22 additions and 18 deletions

View File

@@ -98,7 +98,7 @@ export abstract class ToolBase implements ITool {
}
public get autoInstallNeeded(): boolean {
return this.status !== ToolStatus.Installed && this.autoInstallSupported;
return this.status === ToolStatus.NotInstalled && this.autoInstallSupported;
}
public get isNotInstalled(): boolean {