Skip to content
Snippets Groups Projects
Commit 3281c7b8 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: implement default DETECTOR variables

parent 18a77b21
No related tags found
1 merge request!55fix: implement default DETECTOR variables
......@@ -42,6 +42,20 @@ if [ ! -n "${BEAMLINE_CONFIG_VERSION}" ] ; then
fi
## Detector package to be used during the benchmark process
if [ ! -n "${DETECTOR}" ] ; then
export DETECTOR="ecce"
fi
if [ ! -n "${DETECTOR_CONFIG}" ] ; then
export DETECTOR_CONFIG="${DETECTOR}"
fi
if [ ! -n "${DETECTOR_VERSION}" ] ; then
export DETECTOR_VERSION="main"
fi
## Detector package to be used during the benchmark process
if [ ! -n "${JUGGLER_DETECTOR}" ] ; then
export JUGGLER_DETECTOR="ecce"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment