mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
01150ef2a7
* hv * Change build version
14 lines
275 B
Bash
Executable file
14 lines
275 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$APP_ANDROID_TYPE" ]; then
|
|
echo "Please set APP_ANDROID_TYPE"
|
|
exit 1
|
|
fi
|
|
|
|
DIR=$(dirname "$0")
|
|
|
|
case $APP_ANDROID_TYPE in
|
|
"monero.com") $DIR/build_monero_all.sh ;;
|
|
"cakewallet") $DIR/build_monero_all.sh ;;
|
|
"haven") $DIR/build_haven_all.sh ;;
|
|
esac
|