You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/scripts/ios/build_all.sh

16 lines
387 B

#!/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 && $DIR/build_wownero.sh && $DIR/build_wownero_seed.sh ;;
"haven") $DIR/build_haven_all.sh ;;
"wownero") $DIR/build_wownero_all.sh ;;
esac