()
| 57 | |
| 58 | |
| 59 | def get_current_commit() -> str: |
| 60 | return invoke_output( |
| 61 | "git", |
| 62 | "config", |
| 63 | "--file", |
| 64 | f"{_SUBREPO_NAME}/.gitrepo", |
| 65 | "subrepo.commit", |
| 66 | no_log=True, |
| 67 | ).strip() |
| 68 | |
| 69 | |
| 70 | def err_exit(message: str): |
no test coverage detected
searching dependent graphs…