Fix build.sh --no-verify argument taking unnecessary value

This commit is contained in:
Ethan P 2020-04-01 12:53:17 -07:00
parent 4d788b4453
commit 1c73b97343
No known key found for this signature in database
GPG Key ID: 6963FD04F6CF35EA

View File

@ -238,10 +238,10 @@ while shiftopt; do
case "$OPT" in
--install) OPT_INSTALL=true ;;
--compress) OPT_COMPRESS=true ;;
--no-verify) OPT_VERIFY=false ;;
--prefix) shiftval; OPT_PREFIX="$OPT_VAL" ;;
--alternate-executable) shiftval; OPT_BAT="$OPT_VAL" ;;
--minify) shiftval; OPT_MINIFY="$OPT_VAL" ;;
--no-verify) shiftval; OPT_VERIFY=false ;;
--docs:url) shiftval; DOCS_URL="$OPT_VAL" ;;
--docs:maintainer) shiftval; DOCS_MAINTAINER="$OPT_VAL" ;;