Skip to content

Commit

Permalink
Treat mingw* as windows (#918) (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Apr 5, 2022
1 parent db23fb8 commit a446746
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions install.sh
Expand Up @@ -28,6 +28,11 @@ set -euo pipefail
trap at_exit EXIT

kernel=$(uname -s | tr "[:upper:]" "[:lower:]")
case "${kernel}" in
mingw*)
kernel=windows
;;
esac
case "$(uname -m)" in
x86_64)
machine=amd64
Expand Down

0 comments on commit a446746

Please sign in to comment.