From 69150fcfe588aad79158e29967093b4bd52b8ffc Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Sun, 31 Jul 2022 02:52:28 +0000 Subject: [PATCH] fix: default to epic and define repository url --- bin/env.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/env.sh b/bin/env.sh index 83053ca..cea9f2b 100755 --- a/bin/env.sh +++ b/bin/env.sh @@ -44,7 +44,7 @@ fi ## Detector package to be used during the benchmark process if [ ! -n "${DETECTOR}" ] ; then - export DETECTOR="ecce" + export DETECTOR="epic" fi if [ ! -n "${DETECTOR_CONFIG}" ] ; then @@ -55,6 +55,9 @@ if [ ! -n "${DETECTOR_VERSION}" ] ; then export DETECTOR_VERSION="main" fi +if [ ! -n "${DETECTOR_REPOSITORYURL}" ] ; then + export DETECTOR_REPOSITORYURL="https://github.com/eic/${DETECTOR}.git" +fi ## Number of events that will be processed by the reconstruction if [ ! -n "${JUGGLER_N_EVENTS}" ] ; then -- GitLab