Skip to content

Commit

Permalink
Disable the progress bar when running twine upload
Browse files Browse the repository at this point in the history
PR #231
Resolves #229

Co-authored-by: Sviatoslav Sydorenko <webknjaz@redhat.com>
  • Loading branch information
shenxianpeng and webknjaz committed May 16, 2024
1 parent 771d60f commit 67a07eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions twine-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 67a07eb

Please sign in to comment.