Skip to content

Commit

Permalink
fix: build mkdir errors (#122)
Browse files Browse the repository at this point in the history
Co-authored-by: Jacob Nguyen <[email protected]>
  • Loading branch information
SrIzan10 and jacoobes authored Oct 18, 2023
1 parent 4ec96db commit f1d7d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export async function build(options: Record<string, any>) {

if (!(await pathExists(genDir))) {
console.log('Making .sern/generated dir, does not exist');
await mkdir(genDir);
await mkdir(genDir, { recursive: true });
}

try {
Expand Down

0 comments on commit f1d7d6c

Please sign in to comment.