Skip to content

Commit 8682135

Browse files
authored
Correct the if-clause for printing the hashes
1 parent c83d37b commit 8682135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twine-upload.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then
4444
TWINE_EXTRA_ARGS="--verbose $TWINE_EXTRA_ARGS"
4545
fi
4646

47-
if [[ ${INPUT_PRINT_HASH,,} || ${INPUT_VERBOSE,,} != "false" ]] ; then
47+
if [[ ${INPUT_PRINT_HASH,,} != "false" || ${INPUT_VERBOSE,,} != "false" ]] ; then
4848
python /app/print-hash.py
4949
fi
5050

0 commit comments

Comments
 (0)