swh:1:snp:a44d14bf46f2d71242a54aa79c5374e82bd89434
Raw File
Tip revision: abb645178e2f3e5ac4865ed461ff092db9118728 authored by Bryna Hazelton on 14 March 2023, 22:19:09 UTC
Fix the check if this is a new tag.
Tip revision: abb6451
_activate_current_env.sh
# This script should never be called directly, only sourced:

#     source _activate_current_env.sh

# Initialize the current shell
eval "$(`which micromamba` shell hook --shell=bash)"

# For robustness, try all possible activate commands.
conda activate "${ENV_NAME}" 2>/dev/null \
  || mamba activate "${ENV_NAME}" 2>/dev/null \
  || micromamba activate "${ENV_NAME}"
back to top