fix tagging

This commit is contained in:
Michael Jerger 2023-05-19 17:14:24 +02:00
parent d60b7b03a1
commit 0b14b49b86

View file

@ -146,7 +146,7 @@ class GitApi:
def tag_annotated(self, annotation: str, message: str, count: int):
return self.execution_api.execute(
f"git tag -a {annotation} -m {message} HEAD~{count}"
f"git tag -a {annotation} -m '{message}' HEAD~{count}"
)
def tag_annotated_second_last(self, annotation: str, message: str):