Skip to content

Commit 7ee8353

Browse files
committed
Final clippy fix?
1 parent 0aa638d commit 7ee8353

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ pub(crate) fn versions_from_path<P: AsRef<Path>>(dir: P) -> Result<BTreeSet<Vers
111111

112112
/// Runs the given command as a child process.
113113
pub(crate) fn run_node(mut command: Command) -> Result<NodeExitCode> {
114-
let mut child = map_and_log_error(command.spawn(), format!("failed to execute {:?}", command))?;
114+
let mut child = map_and_log_error(command.spawn(), format!("failed to execute {command:?}"))?;
115115
crate::CHILD_PID.store(child.id(), Ordering::SeqCst);
116116

117117
let exit_status = map_and_log_error(

0 commit comments

Comments
 (0)