From dae67cc73dced35fc9dd15f062b03e0d043d963c Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Sun, 11 May 2025 09:45:23 -0600 Subject: [PATCH] Disable bash trace output in conda activation script Remove `-x` to be less spammy. Retain `-e` to exit on errors. --- repo2docker/buildpacks/conda/activate-conda.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repo2docker/buildpacks/conda/activate-conda.sh b/repo2docker/buildpacks/conda/activate-conda.sh index d3732c8f..9676234e 100755 --- a/repo2docker/buildpacks/conda/activate-conda.sh +++ b/repo2docker/buildpacks/conda/activate-conda.sh @@ -1,4 +1,4 @@ -set -ex +set -e # Setup conda CONDA_PROFILE="${CONDA_DIR}/etc/profile.d/conda.sh" @@ -35,4 +35,4 @@ else mamba activate ${NB_PYTHON_PREFIX} fi -set +ex +set +e