From 549111db3a5fc4c128580c6672b35a1d565cb1e2 Mon Sep 17 00:00:00 2001 From: Gideon <87426140+GideonBear@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:03:13 +0100 Subject: [PATCH] fix(conda): replace deprecated `auto_activate_base` (#1158) --- src/steps/generic.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/steps/generic.rs b/src/steps/generic.rs index 2b8da710..0f6e0e9f 100644 --- a/src/steps/generic.rs +++ b/src/steps/generic.rs @@ -602,11 +602,11 @@ pub fn run_conda_update(ctx: &ExecutionContext) -> Result<()> { let conda = require("conda")?; let output = Command::new(&conda) - .args(["config", "--show", "auto_activate_base"]) + .args(["config", "--show", "auto_activate"]) .output_checked_utf8()?; debug!("Conda output: {}", output.stdout); if output.stdout.contains("False") { - return Err(SkipStep("auto_activate_base is set to False".to_string()).into()); + return Err(SkipStep("auto_activate is set to False".to_string()).into()); } print_separator("Conda");