We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fx
GraalVM
1 parent 68d8027 commit eb0cb6fCopy full SHA for eb0cb6f
lib/prepare_jdks.sh
@@ -172,7 +172,10 @@ prepare_jdks::_get_latest_java_version() {
172
(($# == 1)) || cu::die "${FUNCNAME[0]} requires exact 1 argument! But provided $#: $*"
173
174
local version_pattern="$1" input result
175
- input=$(cat)
+ # exclude
176
+ # - fx: \.fx-
177
+ # - GraalVM: -(grl|gln|nik)\>
178
+ input=$(cat | grep -vE '\.fx-|-(grl|gln|nik|mandrel)\>')
179
180
# 1. first find non-ea and non-fx versions
181
result="$(echo "$input" | grep -vE '\.ea\.|\.fx-' | cu::get_latest_version_match "$version_pattern")"
0 commit comments