mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 18:06:45 +00:00
Merge 5398d30241
into c5195efecf
This commit is contained in:
commit
40149dd50b
3 changed files with 36 additions and 0 deletions
5
dist/setup/index.js
vendored
5
dist/setup/index.js
vendored
|
@ -130917,6 +130917,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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue