ClaudiuB
02/01/2018, 5:34 PMdef buildCommand = "kotlinc -script \'$scriptPath\'"
println("Kotlinc build command: $buildCommand")
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
args "/c", buildCommand
} else {
args "-c", "\"$buildCommand\""
}