summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/oe-build-perf-report4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report
index dc999c45c1..38c0ee885d 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -510,10 +510,10 @@ def auto_args(repo, args):
510 510
511 key = split[0] 511 key = split[0]
512 val = split[1].strip() 512 val = split[1].strip()
513 if key == 'hostname': 513 if key == 'hostname' and not args.hostname:
514 log.debug("Using hostname %s", val) 514 log.debug("Using hostname %s", val)
515 args.hostname = val 515 args.hostname = val
516 elif key == 'branch': 516 elif key == 'branch' and not args.branch:
517 log.debug("Using branch %s", val) 517 log.debug("Using branch %s", val)
518 args.branch = val 518 args.branch = val
519 519