Skip to content
Snippets Groups Projects
Commit b1811408 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

script: allow brew errors (brew link)

parent e6a89c28
No related branches found
No related tags found
No related merge requests found
......@@ -73,9 +73,9 @@ PIP_PKGS="${TRAVIS_BUILD_DIR}/tests/pydnstest/requirements.txt cpp-coveralls"
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
DEPEND_CACHE="https://dl.dropboxusercontent.com/u/2255176/resolver-${TRAVIS_OS_NAME}-cache.tar.gz"
curl "${DEPEND_CACHE}" > cache.tar.gz && tar -xz -C ${HOME} -f cache.tar.gz || true
brew install --force makedepend python
brew link --overwrite python
pip install --upgrade pip
brew install --force makedepend python || true
brew link --overwrite python || true
pip install --upgrade pip || true
pip install -r ${PIP_PKGS}
fi
if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment