From fd7c7be851a7a3cc8f2eb0f782a81cd709bcda67 Mon Sep 17 00:00:00 2001 From: Niels Date: Mon, 25 Jul 2016 19:38:51 +0200 Subject: [PATCH] fixed bash errors --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 64deb2fe7..0373ca3fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -168,8 +168,8 @@ script: - if [ `which valgrind` ]; then valgrind --error-exitcode=1 --leak-check=full ./json_unit ; fi - - if [ $os = "osx" ]; then + - if [ $os="osx" ]; then brew tap nlohmann/json ; brew install nlohmann_json --HEAD ; - brew test nlohmann_json + brew test nlohmann_json ; fi -- GitLab