From 67a07ebbede58a32f17e8cae6b08094c1f2a5c95 Mon Sep 17 00:00:00 2001 From: Peter Shen Date: Thu, 16 May 2024 11:14:58 -0400 Subject: [PATCH] Disable the progress bar when running `twine upload` PR #231 Resolves #229 Co-authored-by: Sviatoslav Sydorenko --- twine-upload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twine-upload.sh b/twine-upload.sh index 592a366..9c608ad 100755 --- a/twine-upload.sh +++ b/twine-upload.sh @@ -121,9 +121,9 @@ if [[ ${INPUT_VERIFY_METADATA,,} != "false" ]] ; then twine check ${INPUT_PACKAGES_DIR%%/}/* fi -TWINE_EXTRA_ARGS= +TWINE_EXTRA_ARGS=--disable-progress-bar if [[ ${INPUT_SKIP_EXISTING,,} != "false" ]] ; then - TWINE_EXTRA_ARGS=--skip-existing + TWINE_EXTRA_ARGS="${TWINE_EXTRA_ARGS} --skip-existing" fi if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then