File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+
3
+
4
+ # # Fix for updating older installations
5
+
6
+ if [[ ! -e $CW_INSTALLATION_PATH /miniforge/ ]]; then
7
+ print_info " Updating older installation which is using miniconda and not miniforge\nCreating symlink miniforge -> miniconda" 1
8
+ ln -s " $CW_INSTALLATION_PATH /miniconda" " $CW_INSTALLATION_PATH /miniforge"
9
+ fi
10
+
2
11
cd $CW_BUILD_TMPDIR
3
12
echo " export env_root=$CW_INSTALLATION_PATH /miniforge/envs/$CW_ENV_NAME /" >> _extra_envs.sh
4
13
echo " export env_root=$CW_INSTALLATION_PATH /miniforge/envs/$CW_ENV_NAME /" >> _vars.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+ git checkout v0.3.2
5
+ mkdir TT
6
+ ../bin/conda-containerize new --prefix TT basic.yaml
7
+ git checkout v0.4.2
8
+ ../bin/conda-containerize update TT --post-install <( echo ' echo "Hello"' )
You can’t perform that action at this time.
0 commit comments