Skip to content

Commit cc52823

Browse files
committed
Fix browser integration tests
1 parent b79ede8 commit cc52823

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/vs/workbench/api/node/extHostStoragePaths.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ async function mkdir(dir: string): Promise<void> {
7171
// doesn't exist, that's OK
7272
}
7373

74-
await fs.promises.mkdir(dir);
74+
try {
75+
await fs.promises.mkdir(dir, { recursive: true });
76+
} catch {
77+
}
7578
}
7679

7780
const MTIME_UPDATE_TIME = 1000; // 1s

0 commit comments

Comments
 (0)