From b1c46e36bb2502db042ec330390f0ffc2dba138d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Le=20Meur?= <91831478+lemeurherve@users.noreply.github.com> Date: Wed, 15 May 2024 20:16:38 +0200 Subject: [PATCH] consistency --- docker-bake.hcl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 434634fd1..c9f349d83 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -138,8 +138,7 @@ function "javaversion" { ? "${JAVA11_VERSION}" : (equal(17, jdk) ? "${JAVA17_VERSION}" - : "${JAVA21_VERSION}") - ) + : "${JAVA21_VERSION}")) } # Return an array of Alpine platforms to use depending on the jdk passed as parameter @@ -147,8 +146,7 @@ function "alpine_platforms" { params = [jdk] result = (equal(21, jdk) ? ["linux/amd64", "linux/arm64"] - : ["linux/amd64"] - ) + : ["linux/amd64"]) } # Return an array of Debian platforms to use depending on the jdk passed as parameter