You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
380 B
19 lines
380 B
#!/bin/bash
|
|
|
|
pushd ./electrum/gui/kivy/
|
|
|
|
make theming
|
|
|
|
if [[ -n "$1" && "$1" == "release" ]] ; then
|
|
echo -n Keystore Password:
|
|
read -s password
|
|
export P4A_RELEASE_KEYSTORE=~/.keystore
|
|
export P4A_RELEASE_KEYSTORE_PASSWD=$password
|
|
export P4A_RELEASE_KEYALIAS_PASSWD=$password
|
|
export P4A_RELEASE_KEYALIAS=electrum
|
|
make release
|
|
else
|
|
make apk
|
|
fi
|
|
|
|
popd
|
|
|