From ad4194845027d2799706dfbe181be2c68c13c9ad Mon Sep 17 00:00:00 2001 From: Marcel Coetzee <34739235+Pipboyguy@users.noreply.github.com> Date: Tue, 17 Sep 2024 03:14:52 +0200 Subject: [PATCH] Remove check for whether conda config contains auto_activate_base (#905) Signed-off-by: Marcel Coetzee --- src/steps/generic.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/steps/generic.rs b/src/steps/generic.rs index 152c721c..7b59969f 100644 --- a/src/steps/generic.rs +++ b/src/steps/generic.rs @@ -450,14 +450,6 @@ pub fn run_conda_update(ctx: &ExecutionContext) -> Result<()> { pub fn run_mamba_update(ctx: &ExecutionContext) -> Result<()> { let mamba = require("mamba")?; - let output = Command::new(&mamba) - .args(["config", "--show", "auto_activate_base"]) - .output_checked_utf8()?; - debug!("Mamba output: {}", output.stdout); - if output.stdout.contains("False") { - return Err(SkipStep("auto_activate_base is set to False".to_string()).into()); - } - print_separator("Mamba"); let mut command = ctx.run_type().execute(mamba);