Skip to content

Commit

Permalink
Correct the if-clause for printing the hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jan 8, 2022
1 parent c83d37b commit 8682135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twine-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then
TWINE_EXTRA_ARGS="--verbose $TWINE_EXTRA_ARGS"
fi

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

Expand Down

0 comments on commit 8682135

Please sign in to comment.