From 2dbee86afefafc75273284e30961c884bed9eb06 Mon Sep 17 00:00:00 2001 From: Thomas O'Donnell Date: Sat, 9 Jan 2021 15:45:42 +0100 Subject: [PATCH] fix(install): Detect cygwin_nt as Windows (#1989) This fixes the install script by detecting cygwin_nt* as Windows. --- install/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/install.sh b/install/install.sh index c14d3b9e..2713d29e 100755 --- a/install/install.sh +++ b/install/install.sh @@ -172,6 +172,7 @@ detect_platform() { case "${platform}" in msys_nt*) platform="pc-windows-msvc" ;; + cygwin_nt*) platform="pc-windows-msvc";; # mingw is Git-Bash mingw*) platform="pc-windows-msvc" ;; # use the statically compiled musl bins on linux to avoid linking issues.