Revision d745e74710ab581d489e815095d0dd4ee91e9c35 authored by Bryna Hazelton on 15 September 2025, 18:00:43 UTC, committed by Jonathan Pober on 15 September 2025, 18:31:58 UTC
1 parent ea19da5
_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}"

Computing file changes ...