Skip to content

Commit

Permalink
Update miniforge version used in installer for OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk committed Nov 19, 2021
1 parent b3341fa commit b7d9e04
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build_miniforge_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ set -e
set -x

echo "Installing a fresh version of Miniforge3."
MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/download/4.8.3-1"
MINIFORGE_FILE="Miniforge3-4.8.3-1-MacOSX-x86_64.sh"
MINIFORGE_VERSION="4.10.3-8"
MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}"
MINIFORGE_FILE="Mambaforge-${MINIFORGE_VERSION}-MacOSX-x86_64.sh"
curl -L -O "${MINIFORGE_URL}/${MINIFORGE_FILE}"
bash "${MINIFORGE_FILE}" -b

echo "Configuring conda."
# shellcheck disable=SC1090
source ~/miniforge3/bin/activate root
source ~/mambaforge/bin/activate root

export CONSTRUCT_ROOT="${PWD}"
mkdir -p build
Expand Down

0 comments on commit b7d9e04

Please sign in to comment.