From f138a14b98d4a64ebbacd970091e93113548cd5a Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wouter.deconinck@umanitoba.ca>
Date: Wed, 11 Aug 2021 19:48:58 +0000
Subject: [PATCH] Use double quotes on all but LD_LIBRARY_PATH

---
 containers/jug/xl.Dockerfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/containers/jug/xl.Dockerfile b/containers/jug/xl.Dockerfile
index aefdb4060..f10f5ad22 100644
--- a/containers/jug/xl.Dockerfile
+++ b/containers/jug/xl.Dockerfile
@@ -82,13 +82,13 @@ RUN cd /tmp
  && echo "ADDING SETUP SCRIPT"                                                  \
  && echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/detector/lib'            \
          > /opt/detector/setup.sh                                               \
- && echo 'export JUGGLER_DETECTOR=athena'                                       \
+ && echo "export JUGGLER_DETECTOR=athena"                                       \
          >> /opt/detector/setup.sh                                              \
- && echo 'export DETECTOR_PATH=/opt/detector/share/athena'                      \
+ && echo "export DETECTOR_PATH=/opt/detector/share/athena"                      \
          >> /opt/detector/setup.sh                                              \
- && echo 'export DETECTOR_VERSION=${DETECTOR_VERSION}'                          \
+ && echo "export DETECTOR_VERSION=${DETECTOR_VERSION}"                          \
          >> /opt/detector/setup.sh                                              \
- && echo 'export JUGGLER_INSTALL_PREFIX=/usr/local'                             \
+ && echo "export JUGGLER_INSTALL_PREFIX=/usr/local"                             \
          >> /opt/detector/setup.sh
 
 ## Install benchmarks into the container
-- 
GitLab