File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,17 @@ jobs:
24
24
run : |
25
25
set -x
26
26
pushd ..
27
- base_dir = " pwd"
27
+ export base_dir=$( pwd)
28
28
echo $base_dir
29
29
# conda installation + setting up dependencies
30
30
# Miniconda3 script expects to be run from a filename ending in .sh
31
- mc3_dir="${base_dir}/miniconda3"
32
- mc3_setup_script=$(mktemp -t mc3XXXXX.sh)
31
+ export mc3_dir="${base_dir}/miniconda3"
32
+ export mc3_setup_script=$(mktemp -t mc3XXXXX.sh)
33
33
wget -q -O${mc3_setup_script} \
34
34
https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
35
35
chmod u+x ${mc3_setup_script}
36
36
37
- mc3_setup_opts="-b -p ${mc3_dir}"
37
+ export mc3_setup_opts="-b -p ${mc3_dir}"
38
38
# Miniconda setup does not handle existing installations well.
39
39
# Backup existing installation before a clean new install.
40
40
if [ -d "$mc3_dir" ]; then
You can’t perform that action at this time.
0 commit comments