Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix error message for ea version
  • Loading branch information
dmitry-shibanov committed Dec 14, 2021
commit 4f4e2942863835285765ac9759d7f152c476f29f
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13887,7 +13887,7 @@ class MicrosoftDistributions extends base_installer_1.JavaBase {
throw new Error(`Unsupported architecture: ${this.architecture}`);
}
if (!this.stable) {
throw new Error('Unstable versions are not supported');
throw new Error('Early access versions are not supported');
}
const availableVersionsRaw = yield this.getAvailableVersions();
const opts = this.getPlatformOption();
Expand Down
2 changes: 1 addition & 1 deletion src/distributions/microsoft/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class MicrosoftDistributions extends JavaBase {
}

if (!this.stable) {
throw new Error('Unstable versions are not supported');
throw new Error('Early access versions are not supported');
}

const availableVersionsRaw = await this.getAvailableVersions();
Expand Down