ci: fix validate-commit-messages

This commit is contained in:
Misko Hevery 2017-02-10 20:50:21 -08:00
parent 8dd16bbe67
commit d3f174a57f
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,11 @@ module.exports = (gulp) => () => {
let someCommitsInvalid = false;
let commitsByLine = stdout.trim().split(/\n/);
for (var i = 0; i < commitsByLine.length; i++) {
if (!commitsByLine[i]) {
commitsByLine.splice(i, 1);
}
}
console.log(`Examining ${commitsByLine.length} commits between HEAD and master`);
if (commitsByLine.length == 0) {