Skip to content

Commit 676f003

Browse files
committed
install: recognize more windows os formats (#336)
1 parent fe9abaa commit 676f003

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ get_os(){
5959
local os
6060
os=$(uname -s)
6161
case "$os" in
62-
MINGW* | Win*) echo "Windows" ;;
62+
MINGW* | Win* | MSYS* | CYGWIN*) echo "Windows" ;;
6363
Darwin*) echo "Darwin" ;;
6464
Linux*) echo "Linux" ;;
6565
*) error "Unsupported operating system: $os" ;;

0 commit comments

Comments
 (0)