mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
17 lines
366 B
Bash
Executable file
17 lines
366 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pushd ./electrum/gui/kivy/
|
|
|
|
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
|