Skip to content

Commit

Permalink
releaseCheck: fix non-POSIX syntax on Alpine check
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <sxa@redhat.com>
  • Loading branch information
sxa committed Jan 23, 2024
1 parent 4a57826 commit 8838633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbin/releaseCheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ done
### Alpine - Same number of artifacts as Linux so don't adjust EXPECTED
for ARCH in x64 aarch64; do
# Alpine/aarch64 is only included from JDK21
if [ "${TEMURIN_VERSION}" -ge 21 -o "${ARCH}" == "x64" ]; then
if [ "${TEMURIN_VERSION}" -ge 21 -o "${ARCH}" = "x64" ]; then
ACTUAL=$(cat releaseCheck.$$.tmp | grep ${ARCH}_alpine | wc -l)
if [ $ACTUAL -eq $EXPECTED ]
then
Expand Down

0 comments on commit 8838633

Please sign in to comment.