Skip to content

Commit 67a07eb

Browse files
Disable the progress bar when running twine upload
PR #231 Resolves #229 Co-authored-by: Sviatoslav Sydorenko <[email protected]>
1 parent 771d60f commit 67a07eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

twine-upload.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ if [[ ${INPUT_VERIFY_METADATA,,} != "false" ]] ; then
121121
twine check ${INPUT_PACKAGES_DIR%%/}/*
122122
fi
123123

124-
TWINE_EXTRA_ARGS=
124+
TWINE_EXTRA_ARGS=--disable-progress-bar
125125
if [[ ${INPUT_SKIP_EXISTING,,} != "false" ]] ; then
126-
TWINE_EXTRA_ARGS=--skip-existing
126+
TWINE_EXTRA_ARGS="${TWINE_EXTRA_ARGS} --skip-existing"
127127
fi
128128

129129
if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then

0 commit comments

Comments
 (0)