Skip to content

Commit

Permalink
Fix problem detecting version tags. Fix #309
Browse files Browse the repository at this point in the history
  • Loading branch information
aarranz committed Oct 30, 2017
1 parent 0cf55d5 commit 34f713a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wirecloud/commons/utils/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _minimal_ext_cmd(cmd):

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

0 comments on commit 34f713a

Please sign in to comment.