Skip to content

Commit 2ad6aa5

Browse files
committed
exports
1 parent ed0722b commit 2ad6aa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/inductor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
run: |
2525
set -x
2626
pushd ..
27-
base_dir = "pwd"
27+
export base_dir=$(pwd)
2828
echo $base_dir
2929
# conda installation + setting up dependencies
3030
# 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)
3333
wget -q -O${mc3_setup_script} \
3434
https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
3535
chmod u+x ${mc3_setup_script}
3636
37-
mc3_setup_opts="-b -p ${mc3_dir}"
37+
export mc3_setup_opts="-b -p ${mc3_dir}"
3838
# Miniconda setup does not handle existing installations well.
3939
# Backup existing installation before a clean new install.
4040
if [ -d "$mc3_dir" ]; then

0 commit comments

Comments
 (0)