Skip to content

Commit

Permalink
Build: Fix the -g option in source-release.sh (apache#3824)
Browse files Browse the repository at this point in the history
  • Loading branch information
openinx authored Dec 30, 2021
1 parent 8afcdff commit 325d503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/source-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ usage () {
echo " -v Version number of release"
echo " -r Release candidate number"
echo " -k Specify signing key. Defaults to \"GPG default key\""
echo " -g Specify Git remote name. Defaults to \"origin\""
echo " -g Specify Git remote name. Defaults to \"apache\""
echo " -d Turn on DEBUG output"
exit 1
}

# Default repository remote name
remote="apache"

while getopts "v:r:k:r:d" opt; do
while getopts "v:r:k:g:d" opt; do
case "${opt}" in
v)
version="${OPTARG}"
Expand Down

0 comments on commit 325d503

Please sign in to comment.