1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Create the directory.

This commit is contained in:
Cedric Beust 2017-03-30 10:02:42 -07:00
parent 8e46cdb83b
commit 6a61b21482

View file

@ -261,7 +261,7 @@ class KFiles {
* The build location for build scripts is .kobalt/build
*/
fun findBuildScriptDir(parent: String = ".") : File {
val result = File(joinDir(parent, KFiles.dotKobaltDir.path, KFiles.SCRIPT_BUILD_DIR))
val result = File(joinAndMakeDir(parent, KFiles.dotKobaltDir.path, KFiles.SCRIPT_BUILD_DIR))
kobaltLog(2, " Script jar files in: $result")
return result
}