fix: correctly run pre_build.sh in setup_env context instead of in a subshell

This commit is contained in:
zizou
2024-09-04 11:14:09 +02:00
parent b7c98741ae
commit 0e3c1268dd

View File

@@ -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