From c3fbd68c153b595e98c34c15ebfd0db1e144863d Mon Sep 17 00:00:00 2001 From: meowmeowcat Date: Thu, 13 Jan 2022 12:50:40 +0800 Subject: [PATCH] Remove quotes Fix #90 --- twine-upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twine-upload.sh b/twine-upload.sh index 31da635..829f39a 100755 --- a/twine-upload.sh +++ b/twine-upload.sh @@ -45,7 +45,7 @@ if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then fi if [[ ${INPUT_PRINT_HASH,,} != "false" || ${INPUT_VERBOSE,,} != "false" ]] ; then - python /app/print-hash.py "${INPUT_PACKAGES_DIR%%/}" + python /app/print-hash.py ${INPUT_PACKAGES_DIR%%/} fi TWINE_USERNAME="$INPUT_USER" \