MCPcopy Create free account
hub / github.com/aws/amazon-q-developer-cli / sign_args

Method sign_args

scripts/build.py:424–433  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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}")

Callers 2

__init__Method · 0.95
sign_fileMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected