We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d525de3 commit d992f6cCopy full SHA for d992f6c
compiler/src/dotty/tools/dotc/fromtasty/Debug.scala
@@ -17,7 +17,10 @@ object Debug {
17
18
assert(!args.contains("-d"))
19
20
- val tmpOut = Files.createTempDirectory(Paths.get("out").toAbsolutePath, "from-tasty-tmp")
+ val outPath = Paths.get("out")
21
+ Directory(outPath).createDirectory()
22
+
23
+ val tmpOut = Files.createTempDirectory(outPath.toAbsolutePath, "from-tasty-tmp")
24
25
val fromSourcesOut = Files.createDirectory(tmpOut.resolve("from-source"))
26
0 commit comments