(self)
| 180 | self._git_ref = result.stdout.strip() |
| 181 | |
| 182 | def _create_tarball_dir(self) -> None: |
| 183 | os.makedirs(self._tarball_dir, exist_ok=True) |
| 184 | |
| 185 | def _check_tarball_path(self) -> Path | None: |
| 186 | if self._tarball_name in os.listdir(self._tarball_dir): |