mirror of
https://gitea.com/actions/setup-java.git
synced 2025-04-06 07:19:39 +00:00
Add an error condition for non jdk Microsoft OpenJDK build (#265)
This commit is contained in:
3
dist/setup/index.js
vendored
3
dist/setup/index.js
vendored
@ -13889,6 +13889,9 @@ class MicrosoftDistributions extends base_installer_1.JavaBase {
|
||||
if (!this.stable) {
|
||||
throw new Error('Early access versions are not supported');
|
||||
}
|
||||
if (this.packageType !== 'jdk') {
|
||||
throw new Error('Microsoft Build of OpenJDK provides only the `jdk` package type');
|
||||
}
|
||||
const availableVersionsRaw = yield this.getAvailableVersions();
|
||||
const opts = this.getPlatformOption();
|
||||
const availableVersions = availableVersionsRaw.map(item => ({
|
||||
|
Reference in New Issue
Block a user