Skip to content

Commit

Permalink
fix: fix autobump (#865)
Browse files Browse the repository at this point in the history
CircleCI config needs to be fixed to use new installation script
  • Loading branch information
daler authored Apr 4, 2023
1 parent 0e63e73 commit b6b674c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ jobs:

- run:
name: Install bioconda-utils
command: bash install-and-set-up-conda.sh
command: |
source $BASH_ENV
if [ ! -e /opt/miniconda ]; then
bash install-and-set-up-conda.sh
fi
- save_cache:
key: bioconda-utils-{{ checksum "install-and-set-up-conda.sh" }}-{{ checksum ".circleci/config.yml" }}
Expand Down

0 comments on commit b6b674c

Please sign in to comment.