Skip to content

Commit

Permalink
less verbose wget
Browse files Browse the repository at this point in the history
  • Loading branch information
glehmann committed Feb 6, 2024
1 parent 52c0a05 commit 8446fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cross-deps:
WORKDIR /app
DO rust+INIT --keep_fingerprints=true
# DO rust+CARGO --args="install cross@${CROSS_VERSION}"
RUN wget -O- "https://github.com/cross-rs/cross/releases/download/v${CROSS_VERSION}/cross-x86_64-unknown-linux-musl.tar.gz" | tar -xzf - -C /usr/local/bin
RUN wget -nv -O- "https://github.com/cross-rs/cross/releases/download/v${CROSS_VERSION}/cross-x86_64-unknown-linux-musl.tar.gz" | tar -xzf - -C /usr/local/bin
DO rust+SET_CACHE_MOUNTS_ENV
COPY --keep-ts . ./
DO rust+CARGO --args="fetch"
Expand Down

0 comments on commit 8446fe3

Please sign in to comment.