From ceefd0c88a35980a9d015206fff7759bd0eebad1 Mon Sep 17 00:00:00 2001
From: "Alexander V. Tikhonov" <avtikhon@tarantool.org>
Date: Fri, 7 Jun 2019 16:51:09 +0300
Subject: [PATCH] travis-ci: needs blind install for brew python2

Travis-ci failed on brew install python2 due to it was
already installed on OSX 10.13 Sierra, so it needs
to be installed without fails on its exists.

Follow up #4254
---
 .travis.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.travis.mk b/.travis.mk
index e3bf28c531..6d0c42207c 100644
--- a/.travis.mk
+++ b/.travis.mk
@@ -49,7 +49,8 @@ test_ubuntu: deps_ubuntu
 
 deps_osx:
 	brew update
-	brew install python2 openssl readline curl icu4c --force
+	brew install openssl readline curl icu4c --force
+	python2 -V || brew install python2 --force
 	curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python
 	pip install -r test-run/requirements.txt
 
-- 
GitLab