Java icon indicating copy to clipboard operation
Java copied to clipboard

Microsoft JDK extract_dir issues

Open se35710 opened this issue 2 years ago • 0 comments

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\""
        ]
    }

se35710 avatar May 15 '22 20:05 se35710