From d6a07bcbde2367bc20276fd8f444209174ac3d2c Mon Sep 17 00:00:00 2001 From: dengshenkk Date: Tue, 17 Nov 2020 11:55:43 +0800 Subject: [PATCH] Update buildCommit.js remove footer message a space. --- buildCommit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildCommit.js b/buildCommit.js index d17d7ff..b6e2baf 100644 --- a/buildCommit.js +++ b/buildCommit.js @@ -43,7 +43,7 @@ const addFooter = (footer, config) => { const footerPrefix = config && config.footerPrefix ? config.footerPrefix : 'ISSUES CLOSED:'; - return `\n\n${footerPrefix} ${addBreaklinesIfNeeded(footer, config.breaklineChar)}`; + return `\n\n${footerPrefix}${addBreaklinesIfNeeded(footer, config.breaklineChar)}`; }; const escapeSpecialChars = result => {