mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
14 lines
286 B
Bash
Executable file
14 lines
286 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$APP_IOS_TYPE" ]; then
|
|
echo "Please set APP_IOS_TYPE"
|
|
exit 1
|
|
fi
|
|
|
|
DIR=$(dirname "$0")
|
|
|
|
case $APP_IOS_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
|