()
| 316 | return config |
| 317 | |
| 318 | def check_cmdline_tools(): # Fail fast if there are cmdline tool problems |
| 319 | if os.system('git --version >/dev/null 2>/dev/null'): |
| 320 | raise RuntimeError('"git --version" returned a non-zero exit code.') |
| 321 | |
| 322 | def check_key_in_keys(gpgKeyID, local_keys): |
| 323 | if gpgKeyID is not None: |
no outgoing calls
no test coverage detected
searching dependent graphs…