Skip to content

Commit

Permalink
F - Updated bundled Java from 19.0.1 to 19.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
uckelman committed Feb 3, 2023
1 parent 21a0a52 commit 8082102
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,37 +19,37 @@ pushd "$JDKDIR"
ZULU_URL='https://cdn.azul.com/zulu/bin'

TEMURIN_URL='https://github.com/adoptium/temurin19-binaries/releases/download'
TEMURIN_VERSION=jdk-19.0.1+10
TEMURIN_VERSION=jdk-19.0.2+7

BELLSOFT_URL='https://download.bell-sw.com/java/19.0.1%2B11'
BELLSOFT_URL='https://download.bell-sw.com/java/19.0.2%2B9'


# Windows x86_32
filename=OpenJDK19U-jdk_x86-32_windows_hotspot_19.0.1_10.zip
filename=OpenJDK19U-jdk_x86-32_windows_hotspot_19.0.2_7.zip
curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename"
unzip $filename
mv $TEMURIN_VERSION windows-x86_32

# Windows x86_64
filename=OpenJDK19U-jdk_x64_windows_hotspot_19.0.1_10.zip
filename=OpenJDK19U-jdk_x64_windows_hotspot_19.0.2_7.zip
curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename"
unzip $filename
mv $TEMURIN_VERSION windows-x86_64

# Windows aarch64
filename=bellsoft-jdk19.0.1+11-windows-aarch64.zip
filename=bellsoft-jdk19.0.2+9-windows-aarch64.zip
curl -O "$BELLSOFT_URL/$filename"
unzip $filename
mv jdk-19.0.1 windows-aarch64
mv jdk-19.0.2 windows-aarch64

# MacOS x86_64
filename=OpenJDK19U-jdk_x64_mac_hotspot_19.0.1_10.tar.gz
filename=OpenJDK19U-jdk_x64_mac_hotspot_19.0.2_7.tar.gz
curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename"
mkdir macos-x86_64
tar -C macos-x86_64 --strip-components=1 -xvf $filename

# MacOS aarch64
filename=OpenJDK19U-jdk_aarch64_mac_hotspot_19.0.1_10.tar.gz
filename=OpenJDK19U-jdk_aarch64_mac_hotspot_19.0.2_7.tar.gz
curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename"
mkdir macos-aarch64
tar -C macos-aarch64 --strip-components=1 -xvf $filename
Expand Down

0 comments on commit 8082102

Please sign in to comment.