1
0

Merge pull request #674 from gdams/alpine

temurin: add support for Alpine Linux
This commit is contained in:
George Adams
2026-06-12 09:18:56 +01:00
committed by GitHub
parent 307d3a25a0
commit 576b821f29
3 changed files with 36 additions and 0 deletions
+5
View File
@@ -171,6 +171,11 @@ export class TemurinDistribution extends JavaBase {
return 'mac';
case 'win32':
return 'windows';
case 'linux':
if (fs.existsSync('/etc/alpine-release')) {
return 'alpine-linux';
}
return 'linux';
default:
return process.platform;
}