Skip to content

Commit

Permalink
Fixing the case of setting the testmode to false.
Browse files Browse the repository at this point in the history
  • Loading branch information
aglipanci committed Dec 26, 2022
1 parent 180ac90 commit 5c0b1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ fi

pint_command=("pint")

if [[ "${INPUT_TESTMODE}" ]]; then
if [[ "${INPUT_TESTMODE}" == true ]]; then
pint_command+=" --test"
fi

if [[ "${INPUT_VERBOSEMODE}" ]]; then
if [[ "${INPUT_VERBOSEMODE}" == true ]]; then
pint_command+=" -v"
fi

Expand Down

0 comments on commit 5c0b1f6

Please sign in to comment.