Skip to content

Commit 14a4dfb

Browse files
committed
Fix release check for multiple versions of git
1 parent 470a582 commit 14a4dfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def finalize_options(self):
5050

5151
def run(self):
5252
from subprocess import check_output
53-
tag = check_output(['git', 'describe', '--all', '--exact-match', 'HEAD']).strip()
53+
tag = check_output(['git', 'describe', 'HEAD']).strip()
5454
version = read_version()
5555
if tag != version:
5656
print('Missing %s tag on release' % version)

0 commit comments

Comments
 (0)