Skip to content

Commit

Permalink
fix: use binstall v1.10.11 as .13 is broken
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Nov 19, 2024
1 parent bb5fb7a commit f2dce7c
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 @@ -265,7 +265,7 @@ RUN set -ex; \
DOWNLOAD_URL="https://github.com/cargo-bins/cargo-binstall/releases/download/v${BINSTALL_VERSION}/cargo-binstall-${CARGO_BINSTALL_ARCH}.tgz"; \
# Download and extract the cargo-binstall binary
curl -A "Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/81.0" -L --proto '=https' --tlsv1.2 -sSf "$DOWNLOAD_URL" | tar -xvzf -; \
./cargo-binstall -y --force cargo-binstall; \
./cargo-binstall -y --force cargo-binstall@${BINSTALL_VERSION}; \
rm ./cargo-binstall; \
source $HOME/.cargo/env; \
cargo binstall -V
Expand Down Expand Up @@ -318,7 +318,7 @@ COPY --parents \
packages/check-features \
/platform/

RUN if [[ "${CARGO_BUILD_PROFILE}" == "release" ]] ; then \
RUN if [[ "${CARGO_BUILD_PROFILE}" == "release" ]] ; then \
export RELEASE="--release" ; \
fi && \
source $HOME/.cargo/env && \
Expand Down

0 comments on commit f2dce7c

Please sign in to comment.