Skip to content

Commit

Permalink
Merge branch 'main' into remove-legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Jul 13, 2023
2 parents d9b03dd + 6eba650 commit ae7380e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/test/smokehouse/frontends/smokehouse-bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ async function begin() {

if (smokehouseOutputDir && testResultsToOutput) {
fs.rmSync(smokehouseOutputDir, {recursive: true, force: true});
fs.mkdirSync(smokehouseOutputDir);
fs.mkdirSync(smokehouseOutputDir, {recursive: true});

for (const testResult of testResultsToOutput) {
for (let i = 0; i < testResult.runs.length; i++) {
Expand Down

0 comments on commit ae7380e

Please sign in to comment.