From 656cb2c417fef955dba5b9777b173283eafb4700 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 26 Feb 2018 21:50:05 -0500 Subject: build: Use git describe --always Add --always flag to "git describe" command to get a build identifier even if one checks out the repo with a depth parameter that prunes out the last tagged version. Signed-off-by: Kevin O'Connor --- scripts/buildcommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/buildcommands.py') diff --git a/scripts/buildcommands.py b/scripts/buildcommands.py index b9d89e0e..e73bd1c7 100644 --- a/scripts/buildcommands.py +++ b/scripts/buildcommands.py @@ -244,7 +244,7 @@ def git_version(): if not os.path.exists('.git'): logging.debug("No '.git' file/directory found") return "" - ver = check_output("git describe --tags --long --dirty").strip() + ver = check_output("git describe --always --tags --long --dirty").strip() logging.debug("Got git version: %s" % (repr(ver),)) return ver -- cgit v1.2.3-70-g09d2