azdataToolOld -> azdataTool (#16517)

This commit is contained in:
Charles Gagnon
2021-08-02 10:28:46 -07:00
committed by GitHub
parent 91676afd0d
commit 3af2b4a13d
4 changed files with 10 additions and 11 deletions

View File

@@ -14,13 +14,12 @@ import { dependencyType, ToolBase } from './toolBase';
import { SemVerProxy } from './SemVerProxy';
const localize = nls.loadMessageBundle();
export const AzdataToolName = 'azdata-old';
export const AzdataToolName = 'azdata';
const win32InstallationRoot = `${process.env['ProgramFiles(x86)']}\\Microsoft SDKs\\Azdata\\CLI\\wbin`;
const macInstallationRoot = '/usr/local/bin';
const debianInstallationRoot = '/usr/local/bin';
// TODO: This is a temporary shim until we can convert the BDC deployment fully over to using the azdata extension
export class AzdataToolOld extends ToolBase {
export class AzdataTool extends ToolBase {
constructor(platformService: IPlatformService) {
super(platformService);
}