From d543b4c62572cda087f5690b8b137c49c8645c10 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Tue, 1 Jan 2019 10:49:05 -0500 Subject: [PATCH] travis: Fix bash syntax error --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index edb7f5760..a8b031760 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,6 @@ matrix: install: # Build the docker container - pushd $TRAVIS_BUILD_DIR - - if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER; done + - if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER; fi script: - - if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER; else uname -a; done + - if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER; else uname -a; fi