build.sh: provide usage message and exit on unknown arg

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-07-09 10:33:04 -07:00
parent e15b41827c
commit 25b78d7379

View file

@ -69,6 +69,8 @@ while [[ $# -gt 0 ]] ; do
;;
*)
echo "Unknown command line argument $arg"
echo "Usage: build.sh [-no-bt] [-build-deps] [-build-with-webkit] [-mobile] [-desktop] [-both] [-create-appdir] [-skip-googlemaps] [-release]"
exit 1
;;
esac
shift