commit | 993a9dfc5a0815b8e397b03cf5b6c5ba4191c5c5 | [log] [tgz] |
---|---|---|
author | inikep <inikep@gmail.com> | Fri May 27 10:07:46 2016 +0200 |
committer | inikep <inikep@gmail.com> | Fri May 27 10:07:46 2016 +0200 |
tree | 9fb363d840a65d832b9abc325d0007e079662795 | |
parent | bff23b72c5a4d82e2648b22bb4631b3794d66809 [diff] |
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"