Skip to content

Commit

Permalink
Merge branch 'main' into ido-add-git-deep-clone-udc
Browse files Browse the repository at this point in the history
  • Loading branch information
idodod authored Nov 14, 2023
2 parents 8546d9e + 4371143 commit 68763ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ get-tomljson:
FROM alpine:3.18.3
ARG USERARCH
ARG version=2.1.0
RUN wget -O tomljson.tar.xz https://github.com/pelletier/go-toml/releases/download/v${version}/tomljson_${version}_linux_${USERARCH}.tar.xz; \
tar -xf tomljson.tar.xz; \
RUN wget -O tomljson.tar.xz https://github.com/pelletier/go-toml/releases/download/v${version}/tomljson_${version}_linux_${USERARCH}.tar.xz && \
tar -xf tomljson.tar.xz && \
chmod +x tomljson
SAVE ARTIFACT tomljson

Expand All @@ -70,7 +70,7 @@ get-jq:
FROM alpine:3.18.3
ARG USERARCH
ARG version=1.7
RUN wget -O jq https://github.com/jqlang/jq/releases/download/jq-${version}/jq-linux-${USERARCH}; \
RUN wget -O jq https://github.com/jqlang/jq/releases/download/jq-${version}/jq-linux-${USERARCH} && \
chmod +x jq
SAVE ARTIFACT jq

Expand Down

0 comments on commit 68763ce

Please sign in to comment.