Skip to content

Commit 9b95b4b

Browse files
committed
moar
1 parent 7c011ff commit 9b95b4b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/travis_fast_finish.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def check_latest_pr_build(repo, pr, build_num):
5252
print("build_num: {}".format(build_num))
5353
print("pr_build_nums: {}".format(','.join([str(n) for n in pr_build_nums])))
5454

55-
5655
# Check if our build number is the latest (largest)
5756
# out of all of the builds for this PR.
5857
if build_num < max(pr_build_nums):
@@ -66,8 +65,8 @@ def main():
6665

6766
pr = os.environ["TRAVIS_PULL_REQUEST"]
6867
pr = None if pr == "false" else int(pr)
69-
7068
build_num = int(os.environ["TRAVIS_BUILD_NUMBER"])
69+
print("checking for fast_finish: {}-{}-{}".format(repo, pr, build_num))
7170

7271
return int(check_latest_pr_build(repo, pr, build_num) is False)
7372

0 commit comments

Comments
 (0)