We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa638d commit 7ee8353Copy full SHA for 7ee8353
src/utils.rs
@@ -111,7 +111,7 @@ pub(crate) fn versions_from_path<P: AsRef<Path>>(dir: P) -> Result<BTreeSet<Vers
111
112
/// Runs the given command as a child process.
113
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))?;
+ let mut child = map_and_log_error(command.spawn(), format!("failed to execute {command:?}"))?;
115
crate::CHILD_PID.store(child.id(), Ordering::SeqCst);
116
117
let exit_status = map_and_log_error(
0 commit comments