aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/buildcommands.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-02-26 21:50:05 -0500
committerKevin O'Connor <kevin@koconnor.net>2018-02-26 21:50:05 -0500
commit656cb2c417fef955dba5b9777b173283eafb4700 (patch)
treef8e75e95dcc73f8b75e7d2cb30d3c5400b3d0588 /scripts/buildcommands.py
parent239c1ad5c9c2dac0b4e1853154bcb21e0084cfab (diff)
downloadkutter-656cb2c417fef955dba5b9777b173283eafb4700.tar.gz
kutter-656cb2c417fef955dba5b9777b173283eafb4700.tar.xz
kutter-656cb2c417fef955dba5b9777b173283eafb4700.zip
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 <kevin@koconnor.net>
Diffstat (limited to 'scripts/buildcommands.py')
-rw-r--r--scripts/buildcommands.py2
1 files changed, 1 insertions, 1 deletions
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