diff options
| author | mayeut <mayeut@users.noreply.github.com> | 2015-11-07 02:06:22 +0100 |
|---|---|---|
| committer | mayeut <mayeut@users.noreply.github.com> | 2015-11-07 02:06:22 +0100 |
| commit | e5ca873ab13a22e0cdabb4f56367b4c223be0b70 (patch) | |
| tree | 53a699ab9a1c2a02fc8f69c246148517024b00f7 | |
| parent | 601aa38c30258bc7eae1227e00f29a5557953e66 (diff) | |
Fix missing bracket
| -rwxr-xr-x | tools/travis-ci/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-ci/run.sh b/tools/travis-ci/run.sh index 634d05dc..e8c5a281 100755 --- a/tools/travis-ci/run.sh +++ b/tools/travis-ci/run.sh @@ -70,7 +70,7 @@ if [ "${TRAVIS_OS_NAME:-}" == "" ]; then TRAVIS_OS_NAME=windows elif uname -s | grep -i MINGW &> /dev/null; then TRAVIS_OS_NAME=windows - elif [ "${APPVEYOR:-}" == "True"; then + elif [ "${APPVEYOR:-}" == "True" ]; then TRAVIS_OS_NAME=windows else echo "Failed to guess OS"; exit 1 |
