Skip to content

Commit a6f105f

Browse files
committed
Run integration tests
1 parent 7a190e6 commit a6f105f

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
@@ -79,7 +79,7 @@ def git_get_latest_tag(self, git_dir: str):
7979
logging.error(error_message)
8080
return None
8181

82-
tags = response.stdout.decode("utf-8").split("\n")
82+
tags = response.stdout.strip().decode("utf-8").split("\n")
8383
for tag in tags:
8484
try:
8585
semver.parse(tag.strip("v"))

0 commit comments

Comments
 (0)