cake_wallet/scripts/ios/build_all.sh

15 lines
286 B
Bash
Raw Normal View History

2022-01-04 14:57:19 +00:00
#!/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 ;;
2022-03-30 15:57:04 +00:00
"haven") $DIR/build_haven_all.sh ;;
2022-01-04 14:57:19 +00:00
esac