Skip to content

Commit 12fc6dd

Browse files
committed
activate-conda.sh: undo set -e
1 parent 54bf2e7 commit 12fc6dd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

repo2docker/buildpacks/conda/activate-conda.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# enable conda and activate the notebook environment
2-
set -ex
2+
set -e
33
eval $(micromamba shell hook -s posix -r ${CONDA_DIR})
44
for name in conda mamba; do
55
CONDA_PROFILE="${CONDA_DIR}/etc/profile.d/${name}.sh"
@@ -21,3 +21,5 @@ if [[ "${KERNEL_PYTHON_PREFIX}" != "${NB_PYTHON_PREFIX}" ]]; then
2121
else
2222
mamba activate ${NB_PYTHON_PREFIX}
2323
fi
24+
25+
set +e

0 commit comments

Comments
 (0)