From fda43ae86a378e4741db19a17dbc4ec47488cdd8 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Sat, 27 Apr 2024 23:02:41 +0800 Subject: [PATCH] Append --disable-progress-bar to TWINE_EXTRA_ARGS --- twine-upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twine-upload.sh b/twine-upload.sh index 67c4404..c94fa9d 100755 --- a/twine-upload.sh +++ b/twine-upload.sh @@ -120,7 +120,7 @@ if [[ ${INPUT_VERIFY_METADATA,,} != "false" ]] ; then twine check ${INPUT_PACKAGES_DIR%%/}/* fi -TWINE_EXTRA_ARGS="--disable-progress-bar" +TWINE_EXTRA_ARGS="--disable-progress-bar $TWINE_EXTRA_ARGS" if [[ ${INPUT_SKIP_EXISTING,,} != "false" ]] ; then TWINE_EXTRA_ARGS=--skip-existing fi