Added samples to tgz bundle.

Rename dist to kotlin-native in tgz bundle.
This commit is contained in:
Alexander Gorshenev
2017-03-23 19:38:46 +03:00
committed by alexander-gorshenev
parent 7487364bcd
commit 5b653f9579
+8 -2
View File
@@ -225,8 +225,14 @@ task cross_dist {
task bundle(type: Tar) {
dependsOn('cross_dist')
from(project.rootDir)
include 'dist/**'
from("$project.rootDir/dist") {
include '**'
into 'kotlin-native'
}
from(project.rootDir) {
include 'samples/**'
into 'kotlin-native'
}
baseName = 'kotlin-native-compiler'
destinationDir = file('.')
extension = 'tgz'