From 772bd430d58b907239a92c09ed8d94ef7790a827 Mon Sep 17 00:00:00 2001 From: Austin Vazquez <55906459+austinvazquez@users.noreply.github.com> Date: Wed, 26 Jun 2024 09:45:11 -0700 Subject: [PATCH] fix: typo in install script preventing MSYS Windows (#341) Issue #, if available: Found while integrating fd0402 in finch *Description of changes:* This change fixes a typo in install.sh preventing MSYS Windows *Testing done:* - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Austin Vazquez --- deps/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/install.sh b/deps/install.sh index d8708a9..32a5bbd 100644 --- a/deps/install.sh +++ b/deps/install.sh @@ -76,7 +76,7 @@ os="$(uname -s)" case "${os}" in "Darwin") ;; - CYGWIN*|MINGW32*|MINGW*|MYSYS*) + CYGWIN*|MINGW32*|MINGW*|MSYS*) windows=true ;; *)