This commit is contained in:
George Adams 2025-06-23 11:21:23 -07:00 committed by GitHub
commit e2bc151ca2
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

@ -130940,6 +130940,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;
}