Skip to content

Commit 34f713a

Browse files
committed
Fix problem detecting version tags. Fix #309
1 parent 0cf55d5 commit 34f713a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/wirecloud/commons/utils

src/wirecloud/commons/utils/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _minimal_ext_cmd(cmd):
5454

5555
# Check if HEAD points to a release commit
5656
IS_RELEASE = False
57-
release_tag = 'v' + wirecloud.platform.__version__
57+
release_tag = wirecloud.platform.__version__
5858
try:
5959
out = _minimal_ext_cmd(['git', 'tag', '-l', '--points-at', 'HEAD'])
6060
tags = out.strip().decode('ascii').splitlines()

0 commit comments

Comments
 (0)