From 70570cf4031b6fd6929b8d3f1900d70d180587a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ant=C3=B4nio=20Cardoso?= Date: Mon, 4 Nov 2024 08:57:51 -0300 Subject: [PATCH] build: Remove unneeded references (clippy) --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 22e72dc2..cb006871 100644 --- a/build.rs +++ b/build.rs @@ -132,7 +132,7 @@ fn build_web() { panic!("{program} version failed!"); } - let install = Command::new(&program) + let install = Command::new(program) .args(["install", "--frozen-lockfile"]) .current_dir(frontend_dir) .status() @@ -147,7 +147,7 @@ fn build_web() { } else { vec!["build"] }; - let build = Command::new(&program) + let build = Command::new(program) .args(&args) .current_dir(frontend_dir) .status()