We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba92646 commit 52cb477Copy full SHA for 52cb477
src/utils/storage.ts
@@ -131,7 +131,7 @@ export async function promptForCustomStoragePath(): Promise<void> {
131
try {
132
// Test if path is accessible
133
await fs.mkdir(result, { recursive: true })
134
- await fs.access(result, fsConstants.W_OK | fsConstants.X_OK)
+ await fs.access(result, fsConstants.R_OK | fsConstants.W_OK | fsConstants.X_OK)
135
vscode.window.showInformationMessage(t("common:info.custom_storage_path_set", { path: result }))
136
} catch (error) {
137
vscode.window.showErrorMessage(
0 commit comments