Added double quotes in reading of environment variables in Travis CI settings

This commit is contained in:
Juan Miguel Boyero Corral 2016-09-30 17:08:58 +02:00
parent 2e33e16365
commit 799a30172c

View File

@ -67,7 +67,7 @@ def getBuildConfigField(String property){
def value
if(travisBuild) {
value = System.getenv(property)
value = "\"" + System.getenv(property) + "\""
} else {
Properties properties = new Properties()
properties.load(new FileInputStream("keystore.properties"))