Skip to content

Commit 778888a

Browse files
AlekSijirfag
authored andcommitted
Make install script work on Windows.
Closes #472.
1 parent e925b8f commit 778888a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ log_crit() {
172172
uname_os() {
173173
os=$(uname -s | tr '[:upper:]' '[:lower:]')
174174
case "$os" in
175-
msys_nt) os="windows" ;;
175+
msys_nt*) os="windows" ;;
176+
mingw*) os="windows" ;;
176177
esac
177178
echo "$os"
178179
}

0 commit comments

Comments
 (0)