Only download translations if a key is provided

This commit is contained in:
Matthew Miller 2019-11-17 14:21:36 +10:00
parent 9a01bf9ab2
commit f3c97887bc

View File

@ -90,8 +90,7 @@ sourceSets {
val crowdinApiKey = "crowdin_apikey"
if (!project.hasProperty(crowdinApiKey)) ext[crowdinApiKey] = ""
if (project.hasProperty(crowdinApiKey)) {
tasks.named<UploadSourceFileTask>("crowdinUpload") {
apiKey = "${project.property(crowdinApiKey)}"
projectId = "worldedit-core"
@ -112,3 +111,4 @@ tasks.named<DownloadTranslationsTask>("crowdinDownload") {
tasks.named("processResources").configure {
dependsOn("crowdinDownload")
}
}