Skip to content

Commit

Permalink
fix: recursive mkdirp
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Jul 12, 2021
1 parent 6c1d934 commit 42217b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/cli/versions/inspect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default class Inspect extends SfdxCommand {
this.ux.log(`Working Directory: ${this.workingDir}`);
// ensure that we are starting with a clean directory
await fs.rmdir(this.workingDir, { recursive: true });
await fs.mkdirp(this.workingDir);
await fs.mkdirp(this.workingDir, { recursive: true });

this.initArchives();

Expand Down

0 comments on commit 42217b4

Please sign in to comment.