From 65adb21cc807e30402337ef057203a6222a23b66 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Sat, 6 Aug 2022 01:09:45 +0000 Subject: [PATCH] fix: missing end of line escape --- containers/jug/dev.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/jug/dev.Dockerfile b/containers/jug/dev.Dockerfile index 1891aa0ee..637eec672 100644 --- a/containers/jug/dev.Dockerfile +++ b/containers/jug/dev.Dockerfile @@ -84,8 +84,8 @@ ARG EICSPACK_VERSION="$SPACK_VERSION" RUN git clone https://github.com/eic/eic-spack.git ${EICSPACK_ROOT} \ && git -C ${EICSPACK_ROOT} checkout ${EICSPACK_VERSION} \ && if [ -n "${EICSPACK_CHERRYPICKS}" ] ; then \ - git -C ${EICSPACK_ROOT} cherry-pick -n ${SPACK_CHERRYPICKS} ; \ - fi + git -C ${EICSPACK_ROOT} cherry-pick -n ${EICSPACK_CHERRYPICKS} ; \ + fi \ && spack repo add --scope site "${EICSPACK_ROOT}" ## Setup our custom environment -- GitLab