mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 02:13:33 -05:00
Correct the if-clause for printing the hashes
This commit is contained in:
parent
c83d37bdf0
commit
8682135dac
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ if [[ ${INPUT_VERBOSE,,} != "false" ]] ; then
|
||||||
TWINE_EXTRA_ARGS="--verbose $TWINE_EXTRA_ARGS"
|
TWINE_EXTRA_ARGS="--verbose $TWINE_EXTRA_ARGS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${INPUT_PRINT_HASH,,} || ${INPUT_VERBOSE,,} != "false" ]] ; then
|
if [[ ${INPUT_PRINT_HASH,,} != "false" || ${INPUT_VERBOSE,,} != "false" ]] ; then
|
||||||
python /app/print-hash.py
|
python /app/print-hash.py
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue