Skip to content

Commit

Permalink
fix: recursively try to create a dir (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
shinebayar-g authored Dec 17, 2024
1 parent d155c90 commit 59d41e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/K8sApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class K8sApp {
if (fs.existsSync(this.outputName)) {
fs.rmSync(this.outputName, { recursive: true });
}
fs.mkdirSync(this.outputName);
fs.mkdirSync(this.outputName, { recursive: true });
for (const r of this.resources) {
console.log(
pc.blueBright(
Expand Down

0 comments on commit 59d41e5

Please sign in to comment.