Browse Source

test: use merge-base for commit title checking

Otherwise, will compare branch with forked master against upstream master.
Anthony Romano 9 years ago
parent
commit
dc218fb41d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test

+ 1 - 1
test

@@ -148,7 +148,7 @@ function fmt_tests {
 	fi
 
 	echo "Checking commit titles..."
-	git log master..HEAD --oneline | while read l; do
+	git log --oneline `git merge-base HEAD master`...HEAD | while read l; do
 		commitMsg=`echo "$l" | cut -f2- -d' '`
 		if [[ "$commitMsg" == Merge* ]]; then
 			# ignore "Merge pull" commits