dev
sh 15 lines 241 Bytes
Raw
1 #!/bin/sh
2
3 set -x -e
4
5 if [ -z "$APP_ANDROID_TYPE" ]; then
6 echo "Please set APP_ANDROID_TYPE"
7 exit 1
8 fi
9
10 DIR=$(dirname "$0")
11
12 case $APP_ANDROID_TYPE in
13 "monero.com") $DIR/build_monero_all.sh ;;
14 "cakewallet") $DIR/build_monero_all.sh
15 esac