Skip to content
Snippets Groups Projects
Commit da1a1837 authored by André Anjos's avatar André Anjos :speech_balloon: Committed by André Anjos
Browse files

Only set BOB_PREFIX_PATH if not set by caller

parent 864dae1f
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,10 @@ else
fi
PYVER=py$(echo ${PYTHON_VERSION} | tr -d '.')
BOB_PREFIX_PATH=${CONDA_FOLDER}/envs/bob-devel-${PYVER}
if [ -z "${BOB_PREFIX_PATH}" ]; then
# Default on stock installations for our CIs
BOB_PREFIX_PATH=${CONDA_FOLDER}/envs/bob-devel-${PYVER}
fi
LD_LIBRARY_PATH=${BOB_PREFIX_PATH}/lib
if [ -z "${PYPISERVER}" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment