mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 09:35:39 -05:00
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:
@@ -201,12 +201,21 @@ export interface NotebookInfo {
|
||||
linux: string;
|
||||
}
|
||||
|
||||
export enum OsType {
|
||||
export enum OsDistribution {
|
||||
win32 = 'win32',
|
||||
darwin = 'darwin',
|
||||
linux = 'linux',
|
||||
debian = 'debian',
|
||||
others = 'others'
|
||||
}
|
||||
export interface OsRelease extends JSON {
|
||||
type: string;
|
||||
platform: string;
|
||||
hostname: string;
|
||||
arch: string;
|
||||
release: string;
|
||||
id?: string;
|
||||
id_like?: string;
|
||||
}
|
||||
|
||||
export interface ToolRequirementInfo {
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user