spiegel-keyman/android/build.sh
darcywong00 686bb50bc0 Stop warnings being reported during CI builds
-Also updated link to logo2 and copyright date in root readme
2018-02-01 10:35:48 +07:00

31 lines
385 B
Bash
Executable file

#!/bin/sh
# Build Keyman Engine Android and KMAPro
die () {
echo
echo "$*"
echo
exit 1
}
#
# Prevents 'clear' on exit of mingw64 bash shell
#
SHLVL=0
echo Build KMEA and KMAPro:
cd KMEA
./build.sh $@
if [ $? -ne 0 ]; then
die "ERROR: KMEA/build.sh failed"
fi
cd ../KMAPro
./build.sh $@
if [ $? -ne 0 ]; then
die "ERROR: KMAPro/build.sh failed"
fi
cd ../