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 da0af62 commit 98c6d29Copy full SHA for 98c6d29
images/macos/provision/core/openjdk.sh
@@ -40,6 +40,9 @@ installOpenJDK() {
40
archivePath=$(echo ${asset} | jq -r '.binary.package.link')
41
fullVersion=$(echo ${asset} | jq -r '.version.semver' | tr '+' '-')
42
43
+ # Remove 'LTS' suffix from the version if present
44
+ fullVersion="${fullVersion//.LTS/}"
45
+
46
JAVA_TOOLCACHE_PATH=${AGENT_TOOLSDIRECTORY}/Java_Temurin-Hotspot_jdk
47
javaToolcacheVersionPath=$JAVA_TOOLCACHE_PATH/${fullVersion}
48
0 commit comments