mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 23:55:58 -04:00
8 lines
231 B
Bash
Executable File
8 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
if [ "$TARGET_JDK" == "arm" ]
|
|
git clone --depth 1 https://github.com/PojavLauncherTeam/openjdk-aarch64-jdk8u openjdk
|
|
else
|
|
git clone --depth 1 https://github.com/PojavLauncherTeam/openjdk-aarch32-jdk8u openjdk
|
|
fi
|