From c1b9bcf1a77ea82aa83d9d891d4096516674e5e0 Mon Sep 17 00:00:00 2001 From: jonathan Date: Fri, 1 Dec 2023 22:49:27 +0100 Subject: [PATCH] Fix clippy --- compiler/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/main.rs b/compiler/src/main.rs index c1ef242..94fdabf 100644 --- a/compiler/src/main.rs +++ b/compiler/src/main.rs @@ -67,7 +67,7 @@ fn main() -> miette::Result<()> { if args.run { Command::new("chmod") .arg("+x") - .arg(&output) + .arg(output) .output() .into_diagnostic()?;