[oe-commits] [openembedded-core] 01/06: oe-build-perf-report: Allow branch without hostname

git at git.openembedded.org git at git.openembedded.org
Sun Mar 24 22:53:28 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch sumo-next
in repository openembedded-core.

commit 8a9ac9fc8e4eecd7a564e154e465f4638713ce4f
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri Feb 8 13:37:06 2019 +0000

    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)
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/oe-build-perf-report | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report
index dc999c4..38c0ee8 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -510,10 +510,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
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list