diff options
Diffstat (limited to 'scripts/oe-build-perf-report')
-rwxr-xr-x | scripts/oe-build-perf-report | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index b46d61869c..7812ea4540 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report | |||
@@ -509,7 +509,7 @@ def main(argv=None): | |||
509 | 509 | ||
510 | revs = gitarchive.get_test_revs(log, repo, args.tag_name, hostname=args.hostname, | 510 | revs = gitarchive.get_test_revs(log, repo, args.tag_name, hostname=args.hostname, |
511 | branch=args.branch, machine=args.machine) | 511 | branch=args.branch, machine=args.machine) |
512 | if args.branch2: | 512 | if args.branch2 and args.branch2 != args.branch: |
513 | revs2 = gitarchive.get_test_revs(log, repo, args.tag_name, hostname=args.hostname, | 513 | revs2 = gitarchive.get_test_revs(log, repo, args.tag_name, hostname=args.hostname, |
514 | branch=args.branch2, machine=args.machine) | 514 | branch=args.branch2, machine=args.machine) |
515 | if not len(revs2): | 515 | if not len(revs2): |
@@ -533,7 +533,7 @@ def main(argv=None): | |||
533 | else: | 533 | else: |
534 | index1 = len(revs) - 1 | 534 | index1 = len(revs) - 1 |
535 | 535 | ||
536 | if args.branch2: | 536 | if args.branch2 and args.branch2 != args.branch: |
537 | revs2.append(revs[index1]) | 537 | revs2.append(revs[index1]) |
538 | index1 = len(revs2) - 1 | 538 | index1 = len(revs2) - 1 |
539 | revs = revs2 | 539 | revs = revs2 |