Skip to content

Commit 3a41e3e

Browse files
committed
Unbound variable
1 parent c61a6d4 commit 3a41e3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
name: Install Environment and Run Tests
1818
shell: /bin/bash -exuo pipefail
1919
command: |
20-
$MINI_URL="https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Miniforge-24.3.0-0-Linux-aarch64.sh"
20+
MINI_URL="https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Miniforge-24.3.0-0-Linux-aarch64.sh"
2121
wget -q $MINI_URL -O Miniforge3.sh
2222
chmod +x Miniforge3.sh
23-
$MINI_DIR="$HOME/miniconda3"
23+
MINI_DIR="$HOME/miniconda3"
2424
rm -rf $MINI_DIR
2525
./Miniforge3.sh -b -p $MINI_DIR
2626
export PATH=$MINI_DIR/bin:$PATH
@@ -99,10 +99,10 @@ jobs:
9999
name: Install Anaconda Client & Upload Wheels
100100
shell: /bin/bash -exuo pipefail
101101
command: |
102-
$MINI_URL="https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Miniforge-24.3.0-0-Linux-aarch64.sh"
102+
MINI_URL="https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Miniforge-24.3.0-0-Linux-aarch64.sh"
103103
wget -q $MINI_URL -O Miniforge3.sh
104104
chmod +x Miniforge3.sh
105-
$MINI_DIR="$HOME/miniconda3"
105+
MINI_DIR="$HOME/miniconda3"
106106
rm -rf $MINI_DIR
107107
./Miniforge3.sh -b -p $MINI_DIR
108108
export PATH=$MINI_DIR/bin:$PATH

0 commit comments

Comments
 (0)