We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f168c commit de2b55bCopy full SHA for de2b55b
1 file changed
scripts/smoke-test.sh
@@ -1139,6 +1139,10 @@ DL_DIR=$(mktemp -d)
1139
1140
# Detect platform for archive name
1141
DL_OS=$(uname -s | tr 'A-Z' 'a-z')
1142
+# Normalize MSYS2/MinGW to "windows"
1143
+case "$DL_OS" in
1144
+ mingw*|msys*) DL_OS="windows" ;;
1145
+esac
1146
DL_ARCH=$(uname -m)
1147
case "$DL_ARCH" in
1148
aarch64) DL_ARCH="arm64" ;;
0 commit comments