Skip to content

Commit a7eec9d

Browse files
committed
fix: mkdir tests/tested_versions
1 parent a684205 commit a7eec9d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tooling/tested_versions/aggregate-tested-versions.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,10 @@
2727
}
2828
}
2929

30+
// mkdir $TESTED_VERSIONS_DIR
31+
if (!file_exists($TESTED_VERSIONS_DIR)) {
32+
mkdir($TESTED_VERSIONS_DIR, 0777, true);
33+
}
34+
3035
file_put_contents($OUTPUT_FILE_PATH, json_encode($aggregatedData, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
3136
echo "Aggregated data written to: $OUTPUT_FILE_PATH\n";

0 commit comments

Comments
 (0)