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 41a2743 commit c05c7e4Copy full SHA for c05c7e4
src/main/bash/sdkman-init.sh
@@ -81,8 +81,11 @@ function infer_platform() {
81
;;
82
esac
83
84
- *)
+ MSYS*|MINGW*)
85
echo "$kernel"
86
+ ;;
87
+ *)
88
+ echo "Exotic"
89
90
}
91
src/test/groovy/sdkman/specs/PlatformSpec.groovy
@@ -39,6 +39,7 @@ class PlatformSpec extends SdkmanEnvSpecification {
39
"Darwin" | "" | "darwinx64"
40
"MSYS64" | "i686" | "msys64"
41
"MSYS64" | "" | "msys64"
42
+ "CYGWIN" | "" | "exotic"
43
44
45
def "should enable rosetta 2 compatibility mode with environment variable"() {
0 commit comments