Skip to content

Commit 58ba2b8

Browse files
committed
FIX check_build_doc.py false positive detections
1 parent dd3d721 commit 58ba2b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

continuous_integration/circle/check_build_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def exit(msg="", skip=False):
4949
# Hardcode the assumption that this is a PR to origin/master of this repo
5050
# as apparently there is way to reliably get the target of a PR with circle
5151
# ci
52-
git_range = "origin/master..%s" % commit
52+
git_range = "origin/master...%s" % commit
5353
try:
5454
check_output("git fetch origin master".split())
5555
filenames = check_output("git diff --name-only".split() + [git_range])

0 commit comments

Comments
 (0)