mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -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
|
||||
const storageUri = context.globalStorageUri;
|
||||
try {
|
||||
throw new Error('Test');
|
||||
await fs.mkdir(storageUri.fsPath);
|
||||
} catch (err) {
|
||||
if (err.code !== 'EEXIST') {
|
||||
|
||||
Reference in New Issue
Block a user