Skip to content

Commit

Permalink
fix: missing semi-colon and empty line (angular#26945)
Browse files Browse the repository at this point in the history
PR Close angular#26945
  • Loading branch information
picheli20 authored and kara committed Nov 5, 2018
1 parent 4e4bca6 commit f9a4abb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/git/commit-msg.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit f9a4abb

Please sign in to comment.