(self, cmd: tc_build.utils.CmdList)
| 127 | ) |
| 128 | |
| 129 | def git_capture(self, cmd: tc_build.utils.CmdList) -> str: |
| 130 | return self.git(cmd, capture_output=True).stdout.strip() |
| 131 | |
| 132 | def is_shallow(self) -> bool: |
| 133 | git_dir = self.git_capture(['rev-parse', '--git-dir']) |
no test coverage detected