Android: accept 'Release' argument

This is mostly an artifact of how I build release packages. Otherwise
this likely isn't important.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-01-23 17:40:34 +13:00
parent f57cbab824
commit 9f433aa759

View file

@ -25,6 +25,9 @@ while [[ $# -gt 0 ]] ; do
# only download the dependencies, don't build
PREP_ONLY="1"
;;
release|Release)
# simply pass through to build.sh
;;
*)
echo "Unknown command line argument $arg"
echo "Usage: $0 [-prep-only]"