Skip to content

Commit

Permalink
🚑 Fix referring to $INPUT_VERBOSE var
Browse files Browse the repository at this point in the history
Resolves #41
  • Loading branch information
webknjaz committed Sep 25, 2020
1 parent 1f0bcf2 commit 54b39fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twine-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [[ ${INPUT_SKIP_EXISTING,,} != "false" ]] ; then
TWINE_EXTRA_ARGS=--skip-existing
fi

if [[ ${VERBOSE,,} != "false" ]] ; then
if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then
TWINE_EXTRA_ARGS="--verbose $TWINE_EXTRA_ARGS"
fi

Expand Down

0 comments on commit 54b39fb

Please sign in to comment.