Skip to content

Commit f9a4abb

Browse files
Fabio Pichelikara
authored andcommitted
fix: missing semi-colon and empty line (angular#26945)
PR Close angular#26945
1 parent 4e4bca6 commit f9a4abb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/git/commit-msg.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ if (msgFile) {
2424
isValid = checkMsg(firstLine);
2525

2626
if (!isValid) {
27-
console.error('\nCheck CONTRIBUTING.md at the root of the repo for more information.')
27+
console.error('\nCheck CONTRIBUTING.md at the root of the repo for more information.');
2828
}
2929
}
3030

31-
process.exit(isValid ? 0 : 1);
31+
process.exit(isValid ? 0 : 1);

0 commit comments

Comments
 (0)