Execute a command and log errors.
(cmd: str | list[str])
| 111 | """ |
| 112 | |
| 113 | def exec_with_err_log(cmd: str | list[str]) -> ExecResult: |
| 114 | """Execute a command and log errors.""" |
| 115 | return execute(cmd, error_out=True, log=True) |
| 116 | |
| 117 | if ignore_workdir: |
| 118 | commit = get_latest_commit_id() |
no test coverage detected