(self)
| 422 | return {**os.environ, "GNUPGHOME": self.gpg_home} |
| 423 | |
| 424 | def sign_args(self) -> Args: |
| 425 | return [ |
| 426 | "--batch", |
| 427 | "--pinentry-mode", |
| 428 | "loopback", |
| 429 | "--no-tty", |
| 430 | "--yes", |
| 431 | "--passphrase-file", |
| 432 | self.gpg_passphrase_path, |
| 433 | ] |
| 434 | |
| 435 | def sign_file(self, path: pathlib.Path) -> List[pathlib.Path]: |
| 436 | info(f"Signing {path.name}") |