Skip to content

Commit 42217b4

Browse files
committed
fix: recursive mkdirp
1 parent 6c1d934 commit 42217b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/cli/versions/inspect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export default class Inspect extends SfdxCommand {
187187
this.ux.log(`Working Directory: ${this.workingDir}`);
188188
// ensure that we are starting with a clean directory
189189
await fs.rmdir(this.workingDir, { recursive: true });
190-
await fs.mkdirp(this.workingDir);
190+
await fs.mkdirp(this.workingDir, { recursive: true });
191191

192192
this.initArchives();
193193

0 commit comments

Comments
 (0)