Skip to content

Commit

Permalink
Attempt to fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
keeganwitt committed Oct 11, 2023
1 parent 0ea910f commit b29bf78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jdk11-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN set -o errexit -o nounset \
&& echo "Checking download signature" \
&& wget --no-verbose --output-document=groovy.zip.asc "https://archive.apache.org/dist/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
&& gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
&& rm -rf "${GNUPGHOME}" \
&& (rm -rf "${GNUPGHOME}" || true) \
&& rm groovy.zip.asc \
\
&& echo "Cleaning up build dependencies" \
Expand Down
2 changes: 1 addition & 1 deletion jdk17-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN set -o errexit -o nounset \
&& echo "Checking download signature" \
&& wget --no-verbose --output-document=groovy.zip.asc "https://archive.apache.org/dist/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
&& gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
&& rm -rf "${GNUPGHOME}" \
&& (rm -rf "${GNUPGHOME}" || true) \
&& rm groovy.zip.asc \
\
&& echo "Cleaning up build dependencies" \
Expand Down
2 changes: 1 addition & 1 deletion jdk21-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN set -o errexit -o nounset \
&& echo "Checking download signature" \
&& wget --no-verbose --output-document=groovy.zip.asc "https://archive.apache.org/dist/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
&& gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
&& rm -rf "${GNUPGHOME}" \
&& (rm -rf "${GNUPGHOME}" || true) \
&& rm groovy.zip.asc \
\
&& echo "Cleaning up build dependencies" \
Expand Down

0 comments on commit b29bf78

Please sign in to comment.