Skip to content

Commit

Permalink
fix: Restore braces, ;; for case
Browse files Browse the repository at this point in the history
  • Loading branch information
cpswan committed Aug 6, 2024
1 parent cd0dd87 commit e48dc40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ RUN set -eux; \
apt-get install -y --no-install-recommends clang-18; \
cd /; \
case "$(dpkg --print-architecture)" in \
amd64) ARCH="x86_64";\
arm64) ARCH="aarch64"; \
amd64) ARCH="x86_64";;\
arm64) ARCH="aarch64";; \
esac; \
wget https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-$ARCH.tar.gz; \
tar -xvf cmake-${CMAKE_VERSION}-linux-$ARCH.tar.gz --strip-components=1 -C /usr/; \
wget https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-${ARCH}.tar.gz; \
tar -xvf cmake-${CMAKE_VERSION}-linux-${ARCH}.tar.gz --strip-components=1 -C /usr/; \
cmake --version

0 comments on commit e48dc40

Please sign in to comment.