Skip to content

Commit bd69b96

Browse files
committed
fix(cli/proxy-mode): stop enforcing quiet: true
1 parent 5d3dee3 commit bd69b96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/proxy_mode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub async fn main(arg0: &str, current_dir: PathBuf, process: &Process) -> Result
3232
.skip(1 + toolchain.is_some() as usize)
3333
.collect();
3434

35-
let cfg = Cfg::from_env(current_dir, true, process)?;
35+
let cfg = Cfg::from_env(current_dir, false, process)?;
3636
let (toolchain, source) = cfg
3737
.local_toolchain(match toolchain {
3838
Some(name) => Some((

0 commit comments

Comments
 (0)