summaryrefslogtreecommitdiff
path: root/scripts/setup_publish_keys.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/setup_publish_keys.sh')
-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