diff --git a/src/main/kotlin/com/beust/kobalt/app/ProjectFinder.kt b/src/main/kotlin/com/beust/kobalt/app/ProjectFinder.kt index c20d9e88..3e32cc9a 100644 --- a/src/main/kotlin/com/beust/kobalt/app/ProjectFinder.kt +++ b/src/main/kotlin/com/beust/kobalt/app/ProjectFinder.kt @@ -19,8 +19,7 @@ class ProjectFinder @Inject constructor(val buildFileCompilerFactory: BuildFileC val findProjectResult = buildFileCompilerFactory.create(listOf(buildFile), pluginInfo) .compileBuildFiles(args) if (! findProjectResult.taskResult.success) { - throw KobaltException("Couldn't compile build file: " - + findProjectResult.taskResult.errorMessage) + throw KobaltException("Couldn't compile build file: " + findProjectResult.taskResult.errorMessage) } val allProjects = findProjectResult.projects