We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cfa761 commit a922b7fCopy full SHA for a922b7f
2 files changed
scripts/config.sh
@@ -285,6 +285,7 @@ elif [ "$JDKVER" == "13" ]; then
285
elif [ "$JDKVER" == "loom" ] || [ "$JDKVER" == "tip" ]; then
286
if [ "$JDKVER" == "loom" ]; then
287
VERSION_POLICY="latest_commit"
288
+ VERSION_SUFFIX="ev3-loom-experimental"
289
JAVA_REPO="https://github.com/openjdk/loom.git"
290
else
291
VERSION_POLICY="latest_tag"
scripts/fetch.sh
@@ -53,6 +53,11 @@ if [ ! -d "$JDKDIR" ]; then
53
SUFFIX="ev3"
54
fi
55
56
+ # override version suffix
57
+ if [ ! -z "$VERSION_SUFFIX" ]; then
58
+ SUFFIX="$VERSION_SUFFIX"
59
+ fi
60
+
61
# download it
62
echo "[FETCH] Cloning Java repo from Git"
63
git clone --depth "1" --branch "$JAVA_TARGET" "$JAVA_REPO" "$JDKDIR"
0 commit comments