Java
Java copied to clipboard
Microsoft JDK extract_dir issues
Currently Microsoft JDK's extract_dir
contains a build number not available at the download page at https://docs.microsoft.com/java/openjdk/download
Manual updates after each autoupdate is necessary with the current manifests. For a work around, maybe reuse the temurin nightly approach:
"extract_to": "tmp",
"installer": {
"script": [
"(Get-ChildItem -Directory \"$dir\\tmp\").FullName | % { Move-Item \"$_\\*\" \"$dir\" }",
"Remove-Item -Recurse \"$dir\\tmp\""
]
}