File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
core/src/main/kotlin/com/tschuchort/compiletesting Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ abstract class AbstractKotlinCompilation<A : CommonCompilerArguments> internal c
37
37
var workingDir: File by default {
38
38
val path = Files .createTempDirectory(" Kotlin-Compilation" )
39
39
log(" Created temporary working directory at ${path.toAbsolutePath()} " )
40
- return @default path.toFile()
40
+ return @default path.toAbsolutePath(). toFile()
41
41
}
42
42
43
43
/* *
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ internal fun isJdk9OrLater(): Boolean
33
33
internal fun File.listFilesRecursively (): List <File > {
34
34
return (listFiles() ? : throw RuntimeException (" listFiles() was null. File is not a directory or I/O error occured" ))
35
35
.flatMap { file ->
36
+ println (" Recursive file checking found ${file.path} " )
36
37
if (file.isDirectory)
37
38
file.listFilesRecursively()
38
39
else
You can’t perform that action at this time.
0 commit comments