From 54b39fb9371c0b3a6f9f14bb8a67394defc7a806 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 26 Sep 2020 00:42:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Fix=20referring=20to=20`$INPUT?= =?UTF-8?q?=5FVERBOSE`=20var?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves #41 --- twine-upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twine-upload.sh b/twine-upload.sh index 2aef181..38280fc 100755 --- a/twine-upload.sh +++ b/twine-upload.sh @@ -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