Skip to content

Commit

Permalink
Fix a release script error.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtw committed Jul 15, 2021
1 parent addff53 commit 5e00108
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/make_release_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ function how_to_use {
echo " -p the meson library provided or the project name by default Example: foo -> libfoo = libfoo_dep"
}

version=none
repo_slug=none
provides=none
version="none"
repo_slug="none"
provides="none"
meson=0

while getopts ":v:r:pmh:" opt; do
while getopts ":v:r:p:mh:" opt; do
case ${opt} in
v ) version=${OPTARG} ;;
r ) repo_slug=${OPTARG} ;;
Expand Down

0 comments on commit 5e00108

Please sign in to comment.