Fix support for Zulu arm64 architecture

Azul API stopped to support arm64 architecture, the only supported
option for ARM cpus is now 'arm'. This requires to set up hw_bitness
properly to get 64 bits version. 32 bits version can be obtained by
using 'arm' as an architecture.
This commit is contained in:
Pawel Palucha
2022-06-07 22:03:10 +02:00
parent 05b9e395e1
commit 1c449b9ad2
4 changed files with 15 additions and 0 deletions

3
dist/setup/index.js vendored
View File

@ -102070,6 +102070,9 @@ class ZuluDistribution extends base_installer_1.JavaBase {
else if (this.architecture == 'x86') {
return { arch: 'x86', hw_bitness: '32', abi: '' };
}
else if (this.architecture == 'arm64') {
return { arch: 'arm', hw_bitness: '64', abi: '' };
}
else {
return { arch: this.architecture, hw_bitness: '', abi: '' };
}