more clarity in releaseAndroidApps.sh script

Change-Id: Idb77a02a06401b9247bcfae4e85b260d38ed22e4
This commit is contained in:
Axel Uhl
2019-10-22 10:02:15 +02:00
parent a8be85a252
commit bce945ad64
+1 -4
View File
@@ -7,8 +7,6 @@ FILES2SIGN=cfg/files2sign.json
VERSION_FILE=cfg/VERSION
GIT_REMOTE=origin
# proxy can be requested with -x
OPTION_PROXY_SETTINGS=
OPTION_UPDATE_ANDROID_VERSIONS=1
OPTION_PERFORM_GIT_OPERATIONS=1
@@ -66,13 +64,12 @@ do
done
# Parse the options
options="mgxr:"
options="mgr:"
while getopts "$options" option
do
case $option in
m) OPTION_UPDATE_ANDROID_VERSIONS=0;;
g) OPTION_PERFORM_GIT_OPERATIONS=0;;
g) OPTION_PERFORM_GIT_OPERATIONS=0;;
r) GIT_REMOTE=$OPTARG;;
\?) exit 4;;
esac