LADI
/
spa
1
Fork 0

uninstalled: support -v option

to make 'make shell' work again
This commit is contained in:
Wim Taymans 2021-05-17 09:42:31 +02:00
parent 34a2fb4b03
commit 3d2945c641
1 changed files with 4 additions and 1 deletions

View File

@ -4,11 +4,14 @@ set -e
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
while getopts ":b:" opt; do
while getopts ":b:v:" opt; do
case ${opt} in
b)
BUILDDIR=${OPTARG}
;;
v)
VERSION=${OPTARG}
;;
\?)
echo "Invalid option: -${OPTARG}"
exit 1