From 0e3c1268dd9d1c889ae7cfff8982b44233ad7853 Mon Sep 17 00:00:00 2001 From: zizou <111426680+flopell@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:14:09 +0200 Subject: [PATCH] fix: correctly run `pre_build.sh` in `setup_env` context instead of in a subshell --- testing/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/setup_env.sh b/testing/setup_env.sh index 2bdf3d8..2ddce3c 100755 --- a/testing/setup_env.sh +++ b/testing/setup_env.sh @@ -15,7 +15,7 @@ source activate $ENV_NAME # Install the requirements echo "Installing the requirements from ${REQUIREMENTS_FILE}..." -./pre_build.sh +source ./pre_build.sh pip install -r $REQUIREMENTS_FILE conda activate $ENV_NAME