From 211d0679c0fab2c8ed69f9220e9e9d3c1bf1aa51 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:22:57 -0800 Subject: [PATCH] =?UTF-8?q?appease=20clippy=20=F0=9F=93=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/bws/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bws/src/main.rs b/crates/bws/src/main.rs index b8ff9ecf2..0a640ea93 100644 --- a/crates/bws/src/main.rs +++ b/crates/bws/src/main.rs @@ -686,7 +686,7 @@ async fn process_commands() -> Result<()> { unreachable!(); }; - let mut command = process::Command::new(&shell); + let mut command = process::Command::new(shell); command .arg("-c") .arg(&user_command)