mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Fix query history storage folder creation (#22229)
This commit is contained in:
@@ -29,7 +29,6 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
|
|||||||
// Create the global storage folder now for storing the query history persistance file
|
// Create the global storage folder now for storing the query history persistance file
|
||||||
const storageUri = context.globalStorageUri;
|
const storageUri = context.globalStorageUri;
|
||||||
try {
|
try {
|
||||||
throw new Error('Test');
|
|
||||||
await fs.mkdir(storageUri.fsPath);
|
await fs.mkdir(storageUri.fsPath);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.code !== 'EEXIST') {
|
if (err.code !== 'EEXIST') {
|
||||||
|
|||||||
Reference in New Issue
Block a user