From a358ff1b9955a8eed330ec78db56e50f6b7cc0c9 Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Mon, 18 Dec 2023 13:08:42 -0800 Subject: [PATCH] Conda: use --no-prune when setting up the devenv. --- conda/setup-environment.cmd | 2 +- conda/setup-environment.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conda/setup-environment.cmd b/conda/setup-environment.cmd index 24c7610850..dd51d7c739 100644 --- a/conda/setup-environment.cmd +++ b/conda/setup-environment.cmd @@ -7,4 +7,4 @@ call conda config --add envs_dirs %CD%/.conda call conda config --set env_prompt "({name})" :: install the FreeCAD dependencies into the environment -call mamba run --live-stream -n freecad mamba-devenv -f conda/environment.devenv.yml +call mamba run --live-stream -n freecad mamba-devenv --no-prune -f conda/environment.devenv.yml diff --git a/conda/setup-environment.sh b/conda/setup-environment.sh index c667e2dbf3..bd75d76602 100755 --- a/conda/setup-environment.sh +++ b/conda/setup-environment.sh @@ -9,4 +9,4 @@ conda config --add envs_dirs $(pwd)/.conda conda config --set env_prompt "({name})" # install the FreeCAD dependencies into the environment -mamba run --live-stream -n freecad mamba-devenv -f conda/environment.devenv.yml +mamba run --live-stream -n freecad mamba-devenv --no-prune -f conda/environment.devenv.yml