Lines Matching defs:command
247 let command: Option<Command> = self.create_command()?;
248 if let Some(cmd) = command {
454 let mut command = Command::new("bash");
455 command.current_dir(self.src_work_dir());
458 command.arg("-c");
459 command.arg(raw_cmd);
467 command.env(key, value.value.clone());
472 command.env(key, value.value.clone());
475 return Ok(Some(command));
546 fn run_command(&self, mut command: Command) -> Result<(), ExecutorError> {
547 let mut child = command
569 let command_opt = command.output();
572 "Failed to get command output".to_string(),