difftreelog
fix display switch-to-configuration output
in: trunk
1 file changed
cmds/fleet/src/cmds/build_systems.rsdiffbeforeafterboth1use std::{env::current_dir, time::Duration};1use std::{env::current_dir, process::Stdio, time::Duration};223use crate::{command::CommandExt, host::Config};3use crate::{command::CommandExt, host::Config};4use anyhow::Result;4use anyhow::Result;174 config174 config175 .command_on(&host, switch_script, true)175 .command_on(&host, switch_script, true)176 .arg(action.name())176 .arg(action.name())177 .inherit_stdio()177 .stdout(Stdio::inherit())178 .run()178 .run()179 .await?;179 .await?;180 }180 }