Conda: use --no-prune when setting up the devenv.

This commit is contained in:
Jacob Oursland
2023-12-18 13:08:42 -08:00
parent 759930e3aa
commit a358ff1b99
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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