From 14c46ce13f7a3bbdca26180ad92b04ed0ee4352c Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Thu, 10 Oct 2024 11:16:39 +0200 Subject: [PATCH] add @echo on --- 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;