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 50db437 commit fa3c7b2Copy full SHA for fa3c7b2
src/autify/connect/installClient.ts
@@ -170,7 +170,7 @@ export const installClient = async (
170
// Clean up workspace in case something is left by previous command.
171
if (existsSync(workspaceDir))
172
rmSync(workspaceDir, { recursive: true, force: true });
173
- mkdirSync(workspaceDir);
+ mkdirSync(workspaceDir, { recursive: true });
174
const downloadPath = await download(workspaceDir, url);
175
const extractPath = await extract(downloadPath);
176
// Pre-install validation
0 commit comments