Skip to content

Commit

Permalink
Fix OS type detection to work with suffixes
Browse files Browse the repository at this point in the history
See #156 for details
  • Loading branch information
svishwanath-tw committed Oct 22, 2019
1 parent 44eef9f commit 17a64dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions global_install_scripts/install.bash
Expand Up @@ -89,10 +89,10 @@ function run() {
"Darwin")
ARCHITECTURE="darwin"
;;
"MINGW32_NT-10.0-WOW")
MINGW32_NT-10.0-WOW*)
ARCHITECTURE="windows"
;;
"MINGW64_NT-10.0")
MINGW64_NT-10.0*)
ARCHITECTURE="windows"
;;
*)
Expand Down

0 comments on commit 17a64dc

Please sign in to comment.