From 0730ab7a94dc6bb221fa6a730914dfc86697e90b Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Sun, 26 Nov 2023 16:07:50 +0000 Subject: [PATCH] fix: CLANG with dash --- containers/debian/base.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/debian/base.Dockerfile b/containers/debian/base.Dockerfile index e74b11909..f25a14aae 100644 --- a/containers/debian/base.Dockerfile +++ b/containers/debian/base.Dockerfile @@ -89,7 +89,7 @@ case ${ID} in *) echo "Unsupported ID=${ID}" ; exit 1 ;; esac # Clang version and repository -CLANG=14 +CLANG="-14" curl -s https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - echo "deb http://apt.llvm.org/${VERSION_CODENAME} llvm-toolchain-${VERSION_CODENAME}${CLANG} main" > /etc/apt/source.list.d/llvm.list # Install packages -- GitLab