[Packaging] Fix using wrong commit id

This commit is contained in:
Calum Lind 2017-06-24 23:24:40 +01:00
parent 0424543e36
commit 3f1ff54887
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ try:
release_tag = check_output('git describe --exact-match --abbrev=0'.split(), stderr=STDOUT)
except CalledProcessError:
# Fallback to dev build tag.
dev_tag = check_output('git describe --tags --abbrev=0'.split()).strip()
dev_tag = check_output('git describe --tags'.split()).strip()
release_tag = dev_tag
version = release_tag.split('deluge-')[1]