Skip to content

Commit

Permalink
mkdir -p
Browse files Browse the repository at this point in the history
  • Loading branch information
millotp committed Jul 5, 2022
1 parent eb7d251 commit ba0f55c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/buildSpecs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async function transformBundle({
if (withDoc) {
const docFolderPath = toAbsolutePath('website/specs');
if (!(await exists(docFolderPath))) {
fsp.mkdir(docFolderPath);
fsp.mkdir(docFolderPath, { recursive: true });
}

const pathToSpecDoc = `${docFolderPath}/${clientName}.doc.yml`;
Expand Down

0 comments on commit ba0f55c

Please # to comment.