Skip to content

Commit

Permalink
Merge pull request #92 from timothyjlaurent/patch-1
Browse files Browse the repository at this point in the history
Fixes #91 Update entrypoint.sh make check_consistency need to be "true"
  • Loading branch information
woile authored Nov 7, 2024
2 parents ee36ca9 + b01f7d6 commit 899b309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fi
if [[ $INPUT_INCREMENT ]]; then
CZ_CMD+=('--increment' "$INPUT_INCREMENT")
fi
if [[ $INPUT_CHECK_CONSISTENCY ]]; then
if [[ $INPUT_CHECK_CONSISTENCY == 'true' ]]; then
CZ_CMD+=('--check-consistency')
fi
if [[ $INPUT_GIT_REDIRECT_STDERR == 'true' ]]; then
Expand Down

0 comments on commit 899b309

Please sign in to comment.