Use #!/bin/bash for Travis build script which requires bash

It uses arithmetic expansion and, now, arrays, neither of which exists
in POSIX sh.
This commit is contained in:
Vadim Zeitlin 2020-07-07 12:43:12 +02:00
parent 30582f4be4
commit 9fde10f53e
2 changed files with 2 additions and 2 deletions

View File

@ -108,4 +108,4 @@ notifications:
before_install: ./build/tools/before_install.sh
script: bash build/tools/travis-ci.sh
script: ./build/tools/travis-ci.sh

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# This script is used by Travis CI to configure, build and test wxWidgets