mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
14 lines
221 B
Bash
14 lines
221 B
Bash
|
#!/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 ;;
|
||
|
esac
|