diff options
author | Jack Lloyd <[email protected]> | 2017-08-31 12:13:01 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-31 12:13:01 -0400 |
commit | c1e399ab2988284b431667ad514f6d31a32fea8f (patch) | |
tree | fe2fc9a151ce03c104ebc4506c2c1a91834e5a58 /src/scripts | |
parent | 5cba5c5b2d12c67ab54de2063e67f1f84e2fc80d (diff) |
Make shellcheck happy
I have no idea if an empty if/then/fi block in shell is valid or not
but anyway shellcheck doesn't like it so remove it.
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index 74822a725..582c00b3c 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -77,10 +77,4 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then elif [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update brew install ccache - - if [ "$BUILD_MODE" != "cross-arm32" ] && [ "$BUILD_MODE" != "cross-arm64" ]; then - # Boost 1.58 is installed on Travis OS X images - # brew install boost - fi - fi |