From f84d0bd7deb4c19fdb1e821b3a50e8c8f54a731b Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Mon, 3 Apr 2017 18:58:33 +0300 Subject: scripts/oe-build-perf-report: better guessing of args When getting info from the latest commit, don't search all refs but only branches. We don't get correct data from refs/tags/* or refs/notest/*, for example. Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- scripts/oe-build-perf-report | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report index 39766135c6..ca9cf1d974 100755 --- a/scripts/oe-build-perf-report +++ b/scripts/oe-build-perf-report @@ -380,7 +380,7 @@ def auto_args(repo, args): """Guess arguments, if not defined by the user""" # Get the latest commit in the repo log.debug("Guessing arguments from the latest commit") - msg = repo.run_cmd(['log', '-1', '--all', '--format=%b']) + msg = repo.run_cmd(['log', '-1', '--branches', '--format=%b']) for line in msg.splitlines(): split = line.split(':', 1) if len(split) != 2: -- cgit 1.2.3-korg