Skip to content

Commit 899b309

Browse files
authoredNov 7, 2024··
Merge pull request #92 from timothyjlaurent/patch-1
Fixes #91 Update entrypoint.sh make check_consistency need to be "true"
2 parents ee36ca9 + b01f7d6 commit 899b309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fi
7373
if [[ $INPUT_INCREMENT ]]; then
7474
CZ_CMD+=('--increment' "$INPUT_INCREMENT")
7575
fi
76-
if [[ $INPUT_CHECK_CONSISTENCY ]]; then
76+
if [[ $INPUT_CHECK_CONSISTENCY == 'true' ]]; then
7777
CZ_CMD+=('--check-consistency')
7878
fi
7979
if [[ $INPUT_GIT_REDIRECT_STDERR == 'true' ]]; then

0 commit comments

Comments
 (0)
Please sign in to comment.