From a656d7d0241a7e21535db4034fa65d15d120675e Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Wed, 8 May 2024 00:49:50 +0000 Subject: [PATCH] fix: clang-format and clang-format-diff alternatives --- containers/debian/base.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/containers/debian/base.Dockerfile b/containers/debian/base.Dockerfile index baa636ce2..d7bc84ee2 100644 --- a/containers/debian/base.Dockerfile +++ b/containers/debian/base.Dockerfile @@ -111,6 +111,8 @@ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++${GCC} 100 update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran${GCC} 100 update-alternatives --install /usr/bin/clang clang /usr/bin/clang${CLANG} 100 update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++${CLANG} 100 +update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format${CLANG} 100 +update-alternatives --install /usr/bin/clang-format-diff clang-format-diff /usr/bin/clang-format-diff${CLANG} 100 update-alternatives --install /usr/bin/clang-tidy-diff clang-tidy-diff /usr/bin/clang-tidy-diff${CLANG}.py 100 update-alternatives --install /usr/bin/run-clang-tidy run-clang-tidy /usr/bin/run-clang-tidy${CLANG}.py 100 # Default to gcc -- GitLab