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