(*args: str, no_log: bool = False)
| 50 | |
| 51 | |
| 52 | def invoke_output(*args: str, no_log: bool = False) -> str: |
| 53 | if not no_log: |
| 54 | print(f"== {shlex.join(args)} ==") |
| 55 | |
| 56 | return subprocess.check_output(args, text=True) |
| 57 | |
| 58 | |
| 59 | def get_current_commit() -> str: |
no test coverage detected
searching dependent graphs…