fixed unfechted error for release version

master
Martin Scheidt 2022-03-07 11:39:28 +01:00
parent 65552d40d6
commit b970ff7357
1 changed files with 8 additions and 0 deletions

View File

@ -67,6 +67,14 @@ process_arguments() {
-r|--release)
RELEASE=1
shift
if [ -z "$1" ]; then
print_usage
exit 1
fi
if [ ${1:0:1} = "-" ]; then
print_usage
exit 1
fi
VERSION_STR=$1
;;
*)