We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134d506 commit cf436edCopy full SHA for cf436ed
src/test/groovy/sdkman/support/UnixUtils.groovy
@@ -3,7 +3,14 @@ package sdkman.support
3
class UnixUtils {
4
5
static getPlatform() {
6
- asSdkmanPlatform(System.getProperty("os.name"))
+ def os = System.getProperty("os.name")
7
+ def arch = System.getProperty("os.arch")
8
+
9
+ if("aarch64".equals(arch)) {
10
+ asSdkmanPlatform("LinuxARM64")
11
+ } else {
12
+ asSdkmanPlatform(os)
13
+ }
14
}
15
16
static asSdkmanPlatform(platform) {
0 commit comments