We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8177b18 commit 68bfa43Copy full SHA for 68bfa43
1 file changed
template.sh
@@ -90,13 +90,13 @@ if [ ! -z "$BREAKING_CHANGES" ]; then
90
fi
91
92
echo
93
-echo "${GREEN}${TYPE}${SCOPE}: ${SHORT_DESC}
+echo "${TYPE}${SCOPE}: ${SHORT_DESC}
94
95
${LONG_DESC}
96
97
${BREAKING_CHANGES}
98
99
-${CLOSED_ISSUES}${RESET}" | awk "{gsub(/[ \t]+$/,""); print $0}"
+${CLOSED_ISSUES}" | awk '{ gsub(/ /,""); print }'
100
101
102
# Git commit
@@ -105,9 +105,9 @@ if [ "$RESULT_CODE" = 0 ]; then
105
git commit -m "${TYPE}${SCOPE}: ${SHORT_DESC}
106
107
108
-
+
109
110
111
${CLOSED_ISSUES}"
112
else
113
printf "\n${RED}❌ An error occurred. Please try again.${RESET}\n"
0 commit comments