Skip to content
This repository has been archived by the owner on May 28, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1117 from jstrachan/changes
Browse files Browse the repository at this point in the history
fix: use correct yq URL
  • Loading branch information
jenkins-x-bot-test authored Mar 15, 2021
2 parents 61098e2 + d4d36f0 commit 8e0c770
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-boot
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENV JX3_HOME /home/.jx
ENV YQ_VERSION "4.6.1"

RUN echo using yq version ${YQ_VERSION} and OS ${TARGETOS} arch ${TARGETARCH} && \
curl -L -s https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_${TARGETOS}-${TARGETARCH} > yq && \
curl -L -s https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_${TARGETOS}_${TARGETARCH} > yq && \
chmod +x yq && mv yq /usr/bin

RUN echo using jx version ${VERSION} and OS ${TARGETOS} arch ${TARGETARCH} && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-tfo-aws
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN curl -LO https://releases.hashicorp.com/terraform/${TERRAFORM}/terraform_${T
ENV YQ_VERSION "4.6.1"

RUN echo using yq version ${YQ_VERSION} and OS ${TARGETOS} arch ${TARGETARCH} && \
curl -L -s https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_${TARGETOS}-${TARGETARCH} > yq && \
curl -L -s https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_${TARGETOS}_${TARGETARCH} > yq && \
chmod +x yq && mv yq /usr/bin

# jx
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-tfo-gcp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN curl -LO https://releases.hashicorp.com/terraform/${TERRAFORM}/terraform_${T
ENV YQ_VERSION "4.6.1"

RUN echo using yq version ${YQ_VERSION} and OS ${TARGETOS} arch ${TARGETARCH} && \
curl -L -s https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_${TARGETOS}-${TARGETARCH} > yq && \
curl -L -s https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_${TARGETOS}_${TARGETARCH} > yq && \
chmod +x yq && mv yq /usr/bin

# jx
Expand Down

0 comments on commit 8e0c770

Please sign in to comment.