1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 12:49:46 +00:00

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 <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2019-02-08 13:37:06 +00:00
parent e9d1be84be
commit 8c32ee01a3
+2 -2
View File
@@ -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