Skip to content

Commit

Permalink
build: Remove unneeded references (clippy)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoantoniocardoso authored and patrickelectric committed Nov 4, 2024
1 parent f02c491 commit 70570cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()
Expand Down

0 comments on commit 70570cf

Please sign in to comment.