Skip to content

Commit dae67cc

Browse files
committed
Disable bash trace output in conda activation script
Remove `-x` to be less spammy. Retain `-e` to exit on errors.
1 parent 5a61997 commit dae67cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

repo2docker/buildpacks/conda/activate-conda.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set -ex
1+
set -e
22

33
# Setup conda
44
CONDA_PROFILE="${CONDA_DIR}/etc/profile.d/conda.sh"
@@ -35,4 +35,4 @@ else
3535
mamba activate ${NB_PYTHON_PREFIX}
3636
fi
3737

38-
set +ex
38+
set +e

0 commit comments

Comments
 (0)