We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--debug
1 parent dee95ea commit e543affCopy full SHA for e543aff
entrypoint.sh
@@ -38,9 +38,6 @@ echo "Commitizen version: $(cz version)"
38
PREV_REV="$(cz version --project)"
39
40
CZ_CMD=('cz')
41
-if [[ $INPUT_DEBUG == 'true' ]]; then
42
- CZ_CMD+=('--debug')
43
-fi
44
if [[ $INPUT_NO_RAISE ]]; then
45
CZ_CMD+=('--no-raise' "$INPUT_NO_RAISE")
46
fi
@@ -66,6 +63,9 @@ fi
66
63
if [[ $INPUT_CHECK_CONSISTENCY ]]; then
67
64
CZ_CMD+=('--check-consistency')
68
65
+if [[ $INPUT_DEBUG == 'true' ]]; then
+ CZ_CMD+=('--debug')
+fi
69
if [[ $INPUT_CHANGELOG_INCREMENT_FILENAME ]]; then
70
CZ_CMD+=('--changelog-to-stdout')
71
echo "${CZ_CMD[@]}" ">$INPUT_CHANGELOG_INCREMENT_FILENAME"
0 commit comments