From b4d32b19437c7e90a165a87f562ce78fbcc54c09 Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Thu, 10 Oct 2024 06:02:12 -0400 Subject: [PATCH] feat: add `@echo on` for windows(#1106) --- src/script.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/script.rs b/src/script.rs index 7efd40c6..cb6b66b3 100644 --- a/src/script.rs +++ b/src/script.rs @@ -342,9 +342,12 @@ impl Interpreter for NuShellInterpreter { const CMDEXE_PREAMBLE: &str = r#" @chcp 65001 > nul +@echo on IF "%CONDA_BUILD%" == "" ( call ((script_path)) ) +@rem re-enable echo because the activation scripts might have messed with it +@echo on "#; struct CmdExeInterpreter;