diff --git a/transpire/internal/config.py b/transpire/internal/config.py index 285ab9f..7de3e16 100644 --- a/transpire/internal/config.py +++ b/transpire/internal/config.py @@ -144,7 +144,7 @@ def resolved_dir(self) -> Path: @property def clean_git_url(self): - return self.git.removesuffix(".git") + ".git" + return str(self.git).removesuffix(".git") + ".git" def get_cached_repo(self, *, commit: str | None = None) -> tuple[Path, str]: config = CLIConfig.from_env()