Skip to content

Commit

Permalink
Merge pull request #167 from malariagen/GH166_use_Miniforge
Browse files Browse the repository at this point in the history
Replace Miniconda with Miniforge. Pin MySQL.
  • Loading branch information
leehart authored Jan 17, 2025
2 parents c9039aa + 5cb330e commit e09b264
Show file tree
Hide file tree
Showing 6 changed files with 1,094 additions and 1,067 deletions.
9 changes: 8 additions & 1 deletion env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@
MGENVDIR=$(dirname "${BASH_SOURCE[0]}")

# setup environment variables
# Note: this also adds "$INSTALLDIR/conda/bin" to $PATH
echo "[mgenv] setting environmental variables"
source ${MGENVDIR}/variables.sh

# activate conda
echo "[mgenv] activating conda"
source "$INSTALLDIR/conda/etc/profile.d/conda.sh"

# activate conda environment
command -v conda > /dev/null && source activate $CONDANAME || echo "conda not installed"
echo "[mgenv] activating environment $CONDANAME"
command -v conda > /dev/null && conda activate $CONDANAME || echo "conda not installed"
Loading

0 comments on commit e09b264

Please sign in to comment.