fixed curse upload for other linux builders

This commit is contained in:
Timo Ley 2019-05-30 00:45:26 +02:00
parent 6aa4b66ae5
commit 1ee57b7907
1 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,3 @@
import org.apache.tools.ant.taskdefs.condition.Os
buildscript {
repositories {
@ -32,15 +31,17 @@ def getVersionName = { ->
def getAPIKey = { ->
def stdout = new ByteArrayOutputStream()
if (Os.isFamily(Os.FAMILY_UNIX)) {
try {
exec {
commandLine 'cat', '../apiKey'
standardOutput = stdout
}
return stdout.toString().trim()
} catch(Exception e) {
return '0'
}
return '0'
}
version = getVersionName()