(path: &Path)
| 7159 | } |
| 7160 | |
| 7161 | fn source_checkout_status(path: &Path) -> Result<String> { |
| 7162 | command_output("git", &["status", "--porcelain"], path) |
| 7163 | } |
| 7164 | |
| 7165 | fn source_checkout_status_for_source(name: &str, path: &Path) -> Result<String> { |
| 7166 | if name == POSTGRES_PGLITE_SOURCE { |
no test coverage detected