Skip to content

Commit

Permalink
Fix conda cd
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiayi771 committed Jul 20, 2024
1 parent 163a164 commit 947b45c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scripts/setup-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,11 @@ function install_conda {
echo "Unsupported architecture: $ARCH"
exit 1
fi

mkdir -p conda && cd conda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-$ARCH.sh -O Miniconda3-latest-Linux-$ARCH.sh
bash Miniconda3-latest-Linux-$ARCH.sh -b -p $MINICONDA_PATH
(
mkdir -p conda && cd conda
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-$ARCH.sh -O Miniconda3-latest-Linux-$ARCH.sh
bash Miniconda3-latest-Linux-$ARCH.sh -b -p $MINICONDA_PATH
)
}

function install_duckdb {
Expand Down

0 comments on commit 947b45c

Please sign in to comment.