Skip to content

Commit 43c80f1

Browse files
committed
fix: create all the directories even if they are missing
1 parent 13efd6a commit 43c80f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/dotc/core/tasty/PathPicklingTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class PathPicklingTest {
3030
val out = JFile("out/testPathPickling")
3131
val cwd = JFile("").getAbsolutePath()
3232
delete(out)
33-
out.mkdir()
33+
out.mkdirs()
3434

3535
locally {
3636
val ignorantProcessLogger = ProcessLogger(_ => ())

0 commit comments

Comments
 (0)