Correct the if-clause for printing the hashes

This commit is contained in:
Sviatoslav Sydorenko
2022-01-09 00:05:27 +01:00
committed by GitHub
parent c83d37bdf0
commit 8682135dac
+1 -1
View File
@@ -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