Skip to content

Commit f2dce7c

Browse files
committed
fix: use binstall v1.10.11 as .13 is broken
1 parent bb5fb7a commit f2dce7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ RUN set -ex; \
265265
DOWNLOAD_URL="https://github.com/cargo-bins/cargo-binstall/releases/download/v${BINSTALL_VERSION}/cargo-binstall-${CARGO_BINSTALL_ARCH}.tgz"; \
266266
# Download and extract the cargo-binstall binary
267267
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 -; \
268-
./cargo-binstall -y --force cargo-binstall; \
268+
./cargo-binstall -y --force cargo-binstall@${BINSTALL_VERSION}; \
269269
rm ./cargo-binstall; \
270270
source $HOME/.cargo/env; \
271271
cargo binstall -V
@@ -318,7 +318,7 @@ COPY --parents \
318318
packages/check-features \
319319
/platform/
320320

321-
RUN if [[ "${CARGO_BUILD_PROFILE}" == "release" ]] ; then \
321+
RUN if [[ "${CARGO_BUILD_PROFILE}" == "release" ]] ; then \
322322
export RELEASE="--release" ; \
323323
fi && \
324324
source $HOME/.cargo/env && \

0 commit comments

Comments
 (0)