mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
15 lines
301 B
Bash
Executable file
15 lines
301 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
|
|
$DIR/build_haven.sh ;;
|
|
"haven") $DIR/build_haven_all.sh ;;
|
|
esac
|