From f9a4abb6dc678436c731d26083bd401af6fd2641 Mon Sep 17 00:00:00 2001 From: Fabio Picheli Date: Mon, 5 Nov 2018 16:21:58 +0100 Subject: [PATCH] fix: missing semi-colon and empty line (#26945) PR Close #26945 --- scripts/git/commit-msg.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/git/commit-msg.js b/scripts/git/commit-msg.js index 255c6eff1e..37d662549f 100755 --- a/scripts/git/commit-msg.js +++ b/scripts/git/commit-msg.js @@ -24,8 +24,8 @@ if (msgFile) { isValid = checkMsg(firstLine); if (!isValid) { - console.error('\nCheck CONTRIBUTING.md at the root of the repo for more information.') + console.error('\nCheck CONTRIBUTING.md at the root of the repo for more information.'); } } -process.exit(isValid ? 0 : 1); \ No newline at end of file +process.exit(isValid ? 0 : 1);