Skip to content

Commit

Permalink
fix: Remove braces from $ARCH
Browse files Browse the repository at this point in the history
  • Loading branch information
cpswan committed Aug 6, 2024
1 parent 273b2d2 commit cd0dd87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ RUN set -eux; \
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 cd0dd87

Please sign in to comment.