(command: &str, args: &[&str])
| 9775 | } |
| 9776 | |
| 9777 | fn run(command: &str, args: &[&str]) -> Result<()> { |
| 9778 | let mut command = command_for_host(command); |
| 9779 | command.args(args); |
| 9780 | run_command(&mut command) |
| 9781 | } |
| 9782 | |
| 9783 | fn run_validate_script(mode: &str) -> Result<()> { |
| 9784 | let xtask = env::current_exe().context("resolve current xtask executable")?; |
no test coverage detected