We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 780b54f commit 8e4d75aCopy full SHA for 8e4d75a
src/tools_manager.py
@@ -83,7 +83,7 @@ def git_get_latest_tag(self, git_dir: str):
83
logging.info(tags)
84
for tag in tags:
85
try:
86
- normalized_tag = tag.strip('v')
+ normalized_tag = tag.strip("'").strip('v')
87
semver.parse(normalized_tag)
88
return normalized_tag
89
except Exception as e:
0 commit comments