From 44d807a3126f276e7b44d8cc62db5526e22fe65f Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Sun, 28 Aug 2022 11:55:26 +0000 Subject: [PATCH] fix: display switch-to-configuration output --- --- a/cmds/fleet/src/cmds/build_systems.rs +++ b/cmds/fleet/src/cmds/build_systems.rs @@ -1,4 +1,4 @@ -use std::{env::current_dir, time::Duration}; +use std::{env::current_dir, process::Stdio, time::Duration}; use crate::{command::CommandExt, host::Config}; use anyhow::Result; @@ -174,7 +174,7 @@ config .command_on(&host, switch_script, true) .arg(action.name()) - .inherit_stdio() + .stdout(Stdio::inherit()) .run() .await?; } -- gitstuff