Skip to content

Commit

Permalink
Really make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
killertux committed Jul 25, 2024
1 parent 7b1ed9f commit ec4c450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion temoc/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl App {
let stderr = self.build_stdio();
Ok(Command::new("sh")
.arg("-c")
.arg(&self.command.replace("%p", &self.current_port.to_string()))
.arg(self.command.replace("%p", &self.current_port.to_string()))
.stdout(stdout)
.stderr(stderr)
.spawn()?)
Expand Down

0 comments on commit ec4c450

Please sign in to comment.