From 920931a36e9b71fb59819d29ec6856be1cec37fd Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Fri, 20 Nov 2015 15:08:21 -0800 Subject: [PATCH] Relative dirs. --- src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt b/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt index 33a3ba9d..14fc2f04 100644 --- a/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt +++ b/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt @@ -184,7 +184,7 @@ abstract class JvmCompilerPlugin @Inject constructor( { it .endsWith(project.sourceSuffix) }) .map { File(projectDirectory, it).absolutePath } - val cai = CompilerActionInfo(projectDirectory.absolutePath, classpath, sourceFiles, buildDirectory, + val cai = CompilerActionInfo(projectDirectory.path, classpath, sourceFiles, buildDirectory, emptyList()) return cai }