summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjkoan <jkoan@users.noreply.github.com>2020-03-09 16:09:07 +0100
committerGitHub <noreply@github.com>2020-03-09 16:09:07 +0100
commitbfb701d06f43c0aba532a274018c6743a3613fba (patch)
tree83b78088cc65b42dad44f131b2e72964460efdb7
parent68baf1c063c17c2c143df1907b9db68fbb8da819 (diff)
downloadnavit-bfb701d06f43c0aba532a274018c6743a3613fba.tar.gz
change:android:build:Fix empty Variable handling
-rw-r--r--navit/android/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/android/build.gradle b/navit/android/build.gradle
index 47c304ab9..11af35b83 100644
--- a/navit/android/build.gradle
+++ b/navit/android/build.gradle
@@ -8,7 +8,7 @@ android {
signingConfigs {
release {
// We can leave these in environment variables
- storeFile file(System.getenv("KEYSTORE"))
+ storeFile file(System.getenv("KEYSTORE") ?: "/store")
keyAlias System.getenv("KEY_ALIAS")
storePassword System.getenv("STORE_PASS")
keyPassword System.getenv("KEY_PASS")