Skip to content

Commit 12cfe0f

Browse files
committed
temurin: add support for Alpine Linux
1 parent 67fbd72 commit 12cfe0f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/distributions/temurin/installer.ts

+5
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,11 @@ export class TemurinDistribution extends JavaBase {
173173
return 'mac';
174174
case 'win32':
175175
return 'windows';
176+
case 'linux':
177+
if (fs.existsSync('/etc/alpine-release')) {
178+
return 'alpine-linux';
179+
}
180+
return 'linux';
176181
default:
177182
return process.platform;
178183
}

0 commit comments

Comments
 (0)