From c06410fd57ef4fe7b333d2f45bc00d5e99be5a5e Mon Sep 17 00:00:00 2001 From: John Freeman Date: Thu, 14 Dec 2023 17:26:01 -0600 Subject: [PATCH] JCF: fix typo --- scripts/spack/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/spack/build-release.sh b/scripts/spack/build-release.sh index 590b64c3e..006ac5e42 100755 --- a/scripts/spack/build-release.sh +++ b/scripts/spack/build-release.sh @@ -70,7 +70,7 @@ cd $SPACK_AREA spack spec --reuse ${DET}daq@${RELEASE_TAG}%gcc@12.1.0 build_type=RelWithDebInfo arch=linux-${OS}-x86_64 | tee $SPACK_AREA/spec_${DET}daq_log.txt -test $DET == "dune" && spack spec --reuse dbe@gcc@12.1.0 build_type=RelWithDebInfo arch=linux-${OS}-x86_64 || exit 6 +test $DET == "dune" && spack spec --reuse dbe%gcc@12.1.0 build_type=RelWithDebInfo arch=linux-${OS}-x86_64 || exit 6 spack install --reuse ${DET}daq@${RELEASE_TAG}%gcc@12.1.0 build_type=RelWithDebInfo arch=linux-${OS}-x86_64 || exit 7