Always use singleFile when passing a configuration as a zipTree parameter

This commit is contained in:
Ilya Gorbunov
2019-02-10 20:05:15 +03:00
parent 6bcd112062
commit 441e7cc15d
2 changed files with 2 additions and 2 deletions
@@ -62,7 +62,7 @@ tasks.withType<KotlinCompile> {
val jar = runtimeJar {
dependsOn(builtins)
from(provider { zipTree(builtins.asPath) }) { include("kotlin/**") }
from(provider { zipTree(builtins.singleFile) }) { include("kotlin/**") }
}
val distDir: String by rootProject.extra