Skip to content

Commit a0934c6

Browse files
committed
don't fail if the dir exists
1 parent 53d549b commit a0934c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/compass-e2e-tests/installers/mac-dmg.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function installMacDMG(
3535

3636
// see if the GUI works
3737
const logPath = path.resolve(__dirname, '..', '.log');
38-
await fs.mkdir(logPath);
38+
await fs.mkdir(logPath, { recursive: true });
3939
const screenshotPath = path.resolve(
4040
__dirname,
4141
'..',

0 commit comments

Comments
 (0)