cake_wallet/scripts/ios/build_deps.sh

15 lines
263 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 ;;
2022-02-23 13:04:45 +00:00
"haven") $DIR/build_haven_all.sh ;;
2022-01-04 14:57:19 +00:00
esac