playTests.sh updated to work better with /bin/sh
diff --git a/programs/tests/playTests.sh b/programs/tests/playTests.sh
index dbeb916..5ff4c4e 100755
--- a/programs/tests/playTests.sh
+++ b/programs/tests/playTests.sh
@@ -22,10 +22,12 @@
 
 isWindows=false
 ECHO="echo"
-if [[ "$OS" == "Windows"* ]]; then
+case "$OS" in
+  Windows*) 
     isWindows=true
     ECHO="echo -e"
-fi
+    ;;
+esac
 
 $ECHO "\nStarting playTests.sh isWindows=$isWindows"