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

fix: proper semi-colon command termination

parent ca370208
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !747. Comments created here will be created in the context of that merge request.
...@@ -149,10 +149,10 @@ RUN --mount=type=cache,target=/ccache,id=${TARGETPLATFORM} \ ...@@ -149,10 +149,10 @@ RUN --mount=type=cache,target=/ccache,id=${TARGETPLATFORM} \
&& spack buildcache update-index eics3rw \ && spack buildcache update-index eics3rw \
&& spack env activate --dir ${SPACK_ENV} \ && spack env activate --dir ${SPACK_ENV} \
&& if [ -n ${JUGGLER_VERSION} ] ; then \ && if [ -n ${JUGGLER_VERSION} ] ; then \
spack config add "packages:juggler:require:['@git.${JUGGLER_VERSION}']" \ spack config add "packages:juggler:require:['@git.${JUGGLER_VERSION}']" ; \
fi \ fi \
&& if [ -n ${EICRECON_VERSION} ] ; then \ && if [ -n ${EICRECON_VERSION} ] ; then \
spack config add "packages:eicrecon:require:['@git.${EICRECON_VERSION}']" \ spack config add "packages:eicrecon:require:['@git.${EICRECON_VERSION}']" ; \
fi \ fi \
&& spack concretize --force --fresh \ && spack concretize --force --fresh \
&& make --jobs ${jobs} --keep-going --directory /opt/spack-environment \ && make --jobs ${jobs} --keep-going --directory /opt/spack-environment \
......
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