summaryrefslogtreecommitdiffstats
path: root/scripts/oe-build-perf-report
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-build-perf-report')
-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 0bd05f44ef..c91f74192b 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -512,10 +512,10 @@ def auto_args(repo, args):
512 512
513 key = split[0] 513 key = split[0]
514 val = split[1].strip() 514 val = split[1].strip()
515 if key == 'hostname': 515 if key == 'hostname' and not args.hostname:
516 log.debug("Using hostname %s", val) 516 log.debug("Using hostname %s", val)
517 args.hostname = val 517 args.hostname = val
518 elif key == 'branch': 518 elif key == 'branch' and not args.branch:
519 log.debug("Using branch %s", val) 519 log.debug("Using branch %s", val)
520 args.branch = val 520 args.branch = val
521 521