From dc7eb0410f9ddf2f07c8d774759752583bd839f0 Mon Sep 17 00:00:00 2001 From: William Findlay Date: Mon, 20 Dec 2021 20:13:05 -0500 Subject: [PATCH] xtask/run: fix clippy lint --- xtask/src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/src/run.rs b/xtask/src/run.rs index ca88fc7..175c410 100644 --- a/xtask/src/run.rs +++ b/xtask/src/run.rs @@ -53,7 +53,7 @@ pub fn run(opts: Options) -> Result<(), anyhow::Error> { let mut run_args: Vec<_> = opts.run_args.iter().map(String::as_str).collect(); // configure args - let mut args: Vec<_> = opts.runner.trim().split_terminator(" ").collect(); + let mut args: Vec<_> = opts.runner.trim().split_terminator(' ').collect(); args.push(bin_path.as_str()); args.append(&mut run_args);