This commit is contained in:
George Adams 2025-07-30 13:45:49 -07:00 committed by GitHub
commit 00277e93bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 36 additions and 0 deletions

5
dist/setup/index.js vendored
View file

@ -132017,6 +132017,11 @@ class TemurinDistribution extends base_installer_1.JavaBase {
return 'mac';
case 'win32':
return 'windows';
case 'linux':
if (fs_1.default.existsSync('/etc/alpine-release')) {
return 'alpine-linux';
}
return 'linux';
default:
return process.platform;
}