Add tool path column to the deployment tools table (#8597)

* remove redundan console.warn messages

* add tool path, trim existing columns in tools table

* Update dockerTool.ts
This commit is contained in:
Arvind Ranasaria
2019-12-06 15:53:40 -08:00
committed by GitHub
parent 6e8cc3aaca
commit 6fb120f5dd
7 changed files with 20 additions and 17 deletions

View File

@@ -138,7 +138,7 @@ export abstract class ToolBase implements ITool {
return this._statusDescription;
}
public get installationPath(): string {
public get installationPath(): string | undefined {
return this._installationPath;
}
@@ -300,5 +300,5 @@ export abstract class ToolBase implements ITool {
private _status: ToolStatus = ToolStatus.NotInstalled;
private _version?: SemVer;
private _statusDescription?: string;
private _installationPath!: string;
private _installationPath?: string;
}