We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80cb368 commit 8085227Copy full SHA for 8085227
1 file changed
template.sh
@@ -89,18 +89,18 @@ if [ ! -z "$BREAKING_CHANGES" ]; then
89
BREAKING_CHANGES="BREAKING CHANGE: ${BREAKING_CHANGES}"
90
fi
91
92
-printf "\n${GREEN}${TYPE}${SCOPE}: ${SHORT_DESC}
93
-${LONG_DESC}
94
-${BREAKING_CHANGES}
95
-${CLOSED_ISSUES}${RESET}\n\n"
+printf "\n ${GREEN}${TYPE}${SCOPE}: ${SHORT_DESC}
+ ${LONG_DESC}
+ ${BREAKING_CHANGES}
+ ${CLOSED_ISSUES}${RESET}\n\n"
96
97
# Git commit
98
RESULT_CODE=$?
99
if [ "$RESULT_CODE" = 0 ]; then
100
- git commit -m " ${TYPE}${SCOPE}: ${SHORT_DESC}
101
- ${LONG_DESC}
102
- ${BREAKING_CHANGES}
103
- ${CLOSED_ISSUES}"
+ git commit -m "${TYPE}${SCOPE}: ${SHORT_DESC}
+${LONG_DESC}
+${BREAKING_CHANGES}
+${CLOSED_ISSUES}"
104
else
105
printf "\n${RED}❌ An error occurred. Please try again.${RESET}\n"
106
0 commit comments