mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 17:52:34 -05:00
remove extra quotes (#11997)
This commit is contained in:
@@ -291,7 +291,7 @@ async function installAzdataLinux(): Promise<void> {
|
||||
async function findSpecificAzdata(): Promise<IAzdataTool> {
|
||||
const promise = ((process.platform === 'win32') ? searchForCmd('azdata.cmd') : searchForCmd('azdata'));
|
||||
const path = `"${await promise}"`; // throws if azdata is not found
|
||||
const versionOutput = await executeCommand(`"${path}"`, ['--version']);
|
||||
const versionOutput = await executeCommand(`${path}`, ['--version']);
|
||||
return new AzdataTool(path, parseVersion(versionOutput.stdout));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user