From 4d36cb31b4d19178afd48cf21941a9b1a4f9dbc4 Mon Sep 17 00:00:00 2001 From: "Fabian.Jakub" <fabian@jakub.com> Date: Thu, 25 May 2023 09:04:13 +0200 Subject: [PATCH] fix bash evaluation error --- platforms/common/spack_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/common/spack_utils.sh b/platforms/common/spack_utils.sh index 47132eb..0c5e4eb 100644 --- a/platforms/common/spack_utils.sh +++ b/platforms/common/spack_utils.sh @@ -30,7 +30,7 @@ function _install_spack() { if [[ $(spack compiler info ${SPACK_COMPILER}) ]]; then echo "Found Compiler $(spack compiler info ${SPACK_COMPILER})" else - if $(spack location --install-dir ${SPACK_COMPILER}); then + if [[ $(spack location --install-dir ${SPACK_COMPILER}) ]]; then echo "found the compiler ${SPACK_COMPILER} as a spack package at $(spack location --install-dir $SPACK_COMPILER)" else echo "could not find compiler, will now try to install it... this may take a while" -- GitLab