Skip to content

Commit

Permalink
fix: pick correct download
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Nov 12, 2024
1 parent 3096965 commit c6a83b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-env-as-code/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN case "${TARGETARCH}" in \
# Determine architecture and install cargo-binstall
RUN case "${TARGETARCH}" in \
amd64) ARCH="x86_64-unknown-linux-musl" ;; \
arm64) ARCH="aarch64-unknown-linux-gnu" ;; \
arm64) ARCH="aarch64-unknown-linux-musl" ;; \
*) echo "Unsupported architecture: ${TARGETARCH}" && exit 1 ;; \
esac \
&& wget https://github.com/cargo-bins/cargo-binstall/releases/download/v${CARGO_BINSTALL_VERSION}/cargo-binstall-${ARCH}.tgz \
Expand Down

0 comments on commit c6a83b5

Please sign in to comment.