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 e543aff commit 6215295Copy full SHA for 6215295
entrypoint.sh
@@ -38,6 +38,9 @@ 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
@@ -63,9 +66,6 @@ fi
63
66
if [[ $INPUT_CHECK_CONSISTENCY ]]; then
64
67
CZ_CMD+=('--check-consistency')
65
68
-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