(command: &Version)
| 141 | } |
| 142 | |
| 143 | pub fn run(command: &Version) -> Result<()> { |
| 144 | match command { |
| 145 | Version::Import(args) => run_import(args), |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | fn run_import(args: &ImportArgs) -> Result<()> { |
| 150 | crate::exec_and_capture(&["git", "describe", "--dirty"]) |
nothing calls this directly
no test coverage detected