Skip to content

Commit 8e4d75a

Browse files
committed
Run integration tests
1 parent 780b54f commit 8e4d75a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def git_get_latest_tag(self, git_dir: str):
8383
logging.info(tags)
8484
for tag in tags:
8585
try:
86-
normalized_tag = tag.strip('v')
86+
normalized_tag = tag.strip("'").strip('v')
8787
semver.parse(normalized_tag)
8888
return normalized_tag
8989
except Exception as e:

0 commit comments

Comments
 (0)