only:Unit Tests on Windows

This commit is contained in:
rusefillc 2023-11-04 18:48:46 -04:00
parent f7ded8f69e
commit 5e1f66c1b9
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
# fail on error
set -e
if [ "$(expr substr $(uname -s) 1 6)" == "CYGWIN" ]; then
echo No image on CYGWIN
if [ "$(expr substr $(uname -s) 1 6)" == "CYGWIN" ] || [ "$(expr substr $(uname -s) 1 5)" == "MINGW" ]; then
echo No image on $(uname -s)
exit 0
fi