Native installers for azdata in auto deployment (#8285)

* code complete

* minor fixes from self-review

* installation searchaPaths and display logs fixes

* revert inadvertent change

* fixing installaton roott for debian and mac

* Chaning from getos to linux-release-info with sync api usage for figuring out os distribution

* adding file missed in previous commit

* fixing indvertent compile error that creeped in

* fix default install root for azli
This commit is contained in:
Arvind Ranasaria
2019-11-17 21:39:57 -08:00
committed by GitHub
parent dae71c3bf4
commit bafd9fd437
11 changed files with 529 additions and 449 deletions

View File

@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import { SemVer } from 'semver';
import * as nls from 'vscode-nls';
import { Command, ToolType, OsType } from '../../interfaces';
import { Command, ToolType, OsDistribution } from '../../interfaces';
import { IPlatformService } from '../platformService';
import { ToolBase } from './toolBase';
@@ -51,7 +51,7 @@ export class DockerTool extends ToolBase {
return false;
}
protected get allInstallationCommands(): Map<OsType, Command[]> {
protected get allInstallationCommands(): Map<OsDistribution, Command[]> {
throw Error('Installation of DockerTool is not supported');
}
}