diff --git a/scripts/publish/aws-s3.sh b/scripts/publish/aws-s3.sh index 4805cb44..5bda286a 100755 --- a/scripts/publish/aws-s3.sh +++ b/scripts/publish/aws-s3.sh @@ -39,7 +39,7 @@ ARGV_BUCKET="" ARGV_VERSION="" ARGV_PRODUCT_NAME="" -while getopts ":f:b:v:p" option; do +while getopts ":f:b:v:p:" option; do case $option in f) ARGV_FILE="$OPTARG" ;; b) ARGV_BUCKET="$OPTARG" ;; diff --git a/scripts/publish/bintray-debian.sh b/scripts/publish/bintray-debian.sh index 41f218e6..7772c271 100755 --- a/scripts/publish/bintray-debian.sh +++ b/scripts/publish/bintray-debian.sh @@ -41,7 +41,7 @@ ARGV_ARCHITECTURE="" ARGV_COMPONENT_NAME="" ARGV_RELEASE_TYPE="" -while getopts ":f:v:r:c:t" option; do +while getopts ":f:v:r:c:t:" option; do case $option in f) ARGV_FILE="$OPTARG" ;; v) ARGV_VERSION="$OPTARG" ;;