Files
termux-packages/scripts/build/termux_error_exit.sh
2019-02-27 21:59:08 +02:00

9 lines
168 B
Bash

termux_error_exit() {
echo "ERROR: $*" 1>&2
exit 1
}
if [ "$(uname -o)" = Android ]; then
termux_error_exit "On-device builds are not supported - see README.md"
fi