Skip to content

Commit dda01d4

Browse files
committed
Update Main.java
1 parent b81c2b1 commit dda01d4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

generator/src/Main.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ public class Main {
2929
;
3030

3131
public Main() throws Exception {
32+
{
33+
final File cd = new File(".cache");
34+
if (!cd.exists())
35+
cd.mkdirs();
36+
}
37+
3238
try (final Scanner s = new Scanner(new File("versions.txt"))) {
3339
final ArrayList<Version> bl = new ArrayList<>();
3440
while (s.hasNextLine()) {

0 commit comments

Comments
 (0)