This commit is contained in:
George Adams 2025-07-15 11:26:26 -07:00 committed by GitHub
commit c72df8f9c7
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

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