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.
1 parent c4b532d commit af8c31dCopy full SHA for af8c31d
sbin/build.sh
@@ -163,7 +163,8 @@ getOpenJdkVersion() {
163
else
164
local minorNum="$(cut -d'.' -f 2 <"${dragonwellVerFile}")"
165
local updateNum="$(cut -d'.' -f 3 <"${dragonwellVerFile}")"
166
- local buildNum="$(cut -d'.' -f 5 <"${dragonwellVerFile}")"
+ # special handling for dragonwell version
167
+ local buildNum="$(cut -d'.' -f 5 <"${dragonwellVerFile}" | cut -d'-' -f 1)"
168
version="jdk-11.${minorNum}.${updateNum}+${buildNum}"
169
fi
170
0 commit comments