Fix clippy lints

This commit is contained in:
Thayne McCombs 2022-02-18 01:27:40 -07:00 committed by David Peter
parent 0aee9b0fd9
commit f27332ee8d
1 changed files with 6 additions and 6 deletions

View File

@ -202,12 +202,12 @@ impl CommandTemplate {
cmd.arg(arg.generate(&input, path_separator));
}
execute_command(cmd, &out_perm, buffer_output)
execute_command(cmd, out_perm, buffer_output)
}
fn generate_and_execute_batch(
&self,
paths: &Vec<PathBuf>,
paths: &[PathBuf],
path_separator: Option<&str>,
buffer_output: bool,
) -> ExitCode {