From 8c32ee01a3970c39a901f54a2c7d0f10e41e0f83 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 8 Feb 2019 13:37:06 +0000 Subject: oe-build-perf-report: Allow branch without hostname Allow the branch to be set without the hostname option. Previously if hostname wasn't set, branch would be overwritten regardless of whether it was set or not. (From OE-Core rev: 3ec43bf4c6c8f7730a67f63ad4e14903f289014e) (From OE-Core rev: b162c70dd6e926e1700553e27b41eb1c12ee2dce) Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster Signed-off-by: Richard Purdie --- scripts/oe-build-perf-report | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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): key = split[0] val = split[1].strip() - if key == 'hostname': + if key == 'hostname' and not args.hostname: log.debug("Using hostname %s", val) args.hostname = val - elif key == 'branch': + elif key == 'branch' and not args.branch: log.debug("Using branch %s", val) args.branch = val -- cgit v1.2.3-54-g00ecf