fix: missing semi-colon and empty line (#26945)

PR Close #26945
This commit is contained in:
Fabio Picheli 2018-11-05 16:21:58 +01:00 committed by Kara Erickson
parent 4e4bca6bbc
commit f9a4abb6dc
1 changed files with 2 additions and 2 deletions

View File

@ -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);
process.exit(isValid ? 0 : 1);