Skip to content

Commit

Permalink
Rename dist/ to prebuilt/ for Linux release (#1995)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianstrauch authored Jun 15, 2023
1 parent 99abe2d commit cc6a01b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile_linux_amd64
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ ENV PATH=${PATH}:/usr/local/go/bin:/root/go/bin

RUN cd /cli && make gorelease-linux-amd64

RUN cd /cli && for file in dist/*.txt; do mv -v "$file" "${file/checksums/checksums_linux}"; done;
RUN cd /cli && for file in prebuilt/*.txt; do mv -v "$file" "${file/checksums/checksums_linux}"; done;
2 changes: 1 addition & 1 deletion docker/Dockerfile_linux_arm64
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ ENV PATH=${PATH}:/usr/local/go/bin:/root/go/bin

RUN cd /cli && make gorelease-linux-arm64

RUN cd /cli && rename 's/checksums/checksums_linux_arm64/' dist/*.txt
RUN cd /cli && rename 's/checksums/checksums_linux_arm64/' prebuilt/*.txt
2 changes: 1 addition & 1 deletion docker/Dockerfile_linux_arm64_from_amd64
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ ENV PATH=${PATH}:/usr/local/go/bin:/root/go/bin

RUN cd /cli && make gorelease-linux-arm64

RUN cd /cli && rename 's/checksums/checksums_linux_arm64/' dist/*.txt
RUN cd /cli && rename 's/checksums/checksums_linux_arm64/' prebuilt/*.txt

0 comments on commit cc6a01b

Please sign in to comment.