Tweak test runner to work in MSYS environment on Windows
This commit is contained in:
parent
e207124f88
commit
e86bbfbda0
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
CWD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
case "$(uname -s)" in
|
||||
CYGWIN*) IS_CYGWIN=1 ;;
|
||||
case "$OSTYPE" in
|
||||
msys*|mingw*|cygwin*) IS_CYGWIN=1 ;;
|
||||
esac
|
||||
|
||||
function makePath {
|
||||
|
|
Loading…
Reference in a new issue