summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorjkoan <jkoan@gmx.de>2020-09-06 16:43:11 +0000
committerjkoan <jkoan@gmx.de>2020-09-06 16:43:11 +0000
commit6e256078cae4073f107d88baf617e1672727f5d5 (patch)
treed48e8fac8212273732ca7869b4289dd6c15acaba /scripts
parent21fe6b836e3f2e644103cd97a7a389600958af9b (diff)
downloadnavit-6e256078cae4073f107d88baf617e1672727f5d5.tar.gz
fix:build:Fix Codesigning with newer ndk image versions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/setup_publish_keys.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/setup_publish_keys.sh b/scripts/setup_publish_keys.sh
index 2b1331d8e..b363d9d32 100755
--- a/scripts/setup_publish_keys.sh
+++ b/scripts/setup_publish_keys.sh
@@ -7,8 +7,7 @@ if [[ -n $GOOGLE_KEY ]]; then
fi
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
- keytool -keypasswd -alias $KEY_ALIAS -storepass $STORE_PASS -new $KEY_PASS -keystore ~/.keystore
- rm 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
+ rm keystore.gpg keystore
fi