Merge pull request #79 from propeller-heads/zz/fix-setup-env-script

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:15:03 +02:00
committed by GitHub

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