summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStefan Wildemann <gta04@metalstrolche.de>2020-05-01 19:53:32 +0200
committerjkoan <jkoan@users.noreply.github.com>2020-05-21 09:05:05 +0200
commit3184ae52161d33ebb1c84b72186ff2d49df7eb2a (patch)
tree717d5642cb7829b02065498b93c6f2bc3d082a7e /scripts
parent9c4fe622714c06a4ba16bdd893a4e33d06b4d344 (diff)
downloadnavit-3184ae52161d33ebb1c84b72186ff2d49df7eb2a.tar.gz
fix:build:android: Don't sign apk if no valid keyring is available
This happens usually if building with CI on fork repository
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setup_publish_keys.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/setup_publish_keys.sh b/scripts/setup_publish_keys.sh
index 61ed85b76..2b1331d8e 100755
--- a/scripts/setup_publish_keys.sh
+++ b/scripts/setup_publish_keys.sh
@@ -2,10 +2,10 @@
set -e
-if [ -n $GOOGLE_KEY ]; then
+if [[ -n $GOOGLE_KEY ]]; then
echo $GOOGLE_KEY | base64 -d > key.json
fi
-if [ -n $KEY ]; then
+if [[ -n $KEY ]]; then
wget "https://github.com/navit-gps/infrastructure-blackbox/raw/master/keyrings/keystore.gpg"
openssl aes-256-cbc -d -in keystore.gpg -md md5 -k $KEY > ~/.keystore
keytool -importkeystore -srcstorepass "$STORE_PASS" -deststorepass "$STORE_PASS" -srckeystore ~/.keystore -destkeystore ~/.keystore -deststoretype pkcs12