cbeust / kobalt

A Kotlin-based build system for the JVM.
Apache License 2.0
433 stars 60 forks source link

Variables not accessible in buildScript #340

Closed ethauvin closed 7 years ago

ethauvin commented 7 years ago
var debug  = true

val bs = buildScript {
    if (debug) {
       ...
    }
}

returns

*****
***** ERROR Couldn't compile file:     if (debug) {
...\Build.kt:5:9 Unresolved reference: debug
*****