mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 15:46:08 -04:00
8 lines
222 B
Bash
Executable File
8 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ $TARGET_VERSION -eq 21 ]]; then
|
|
git clone --branch jdk21.0.1 --depth 1 https://github.com/openjdk/jdk21u openjdk-21
|
|
else
|
|
git clone --depth 1 https://github.com/openjdk/jdk17u openjdk-17
|
|
fi |