Skip to content

Commit bc1f2e7

Browse files
committed
update to post install scripts
1 parent ddf740d commit bc1f2e7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

conda/web-installer/post-install.bat.jinja2

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
echo Entering Conda Environment
22
call %PREFIX%\condabin\activate.bat
33

4+
echo Updating conda
5+
call conda update -y -n base conda
6+
7+
echo Cleaning Packages
8+
call conda clean -a -y
9+
410
echo Installing CadQuery
511
call conda install -y cadquery={{ tag_version }}
612

conda/web-installer/post-install.sh.jinja2

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
echo Entering Conda Environment
44
source $PREFIX/bin/activate
55

6+
echo Updating conda
7+
conda update -y -n base conda
8+
9+
echo Cleaning Packages
10+
conda clean -a -y
11+
612
echo Installing CadQuery
713
conda install -y cadquery={{ tag_version }}
814

0 commit comments

Comments
 (0)