Fixing source build script search, attempt to fix KT-8705

(cherry picked from commit 89c5885)
This commit is contained in:
ligee
2015-08-04 16:48:42 +02:00
parent 05e8a080a9
commit 43aaacaa06
@@ -55,7 +55,7 @@ abstract class KotlinBasePluginWrapper: Plugin<Project> {
return scriptHandler
}
log.kotlinDebug("not found, switching to parent")
curProject = curProject.getParent()!!
curProject = curProject.getParent() ?: break
}
return null
}