From f211c192e8d902bb175c562bedbb1da49ec13a7b Mon Sep 17 00:00:00 2001 From: Hyunjin Song Date: Wed, 16 Sep 2020 13:53:31 +0900 Subject: [PATCH] CircleCI: uninstall python@2 to prevent "brew install" errors --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 01a00d912d1..fe5b1f2fd7c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -179,8 +179,8 @@ jobs: - run: name: Install Homebrew dependencies command: | - # unlink Homebrew's python 2 to prevent an node-gyp error - brew unlink python@2 || true + # uninstall Homebrew's python 2 to prevent errors on brew install + brew uninstall python@2 || true brew update && brew install ccache fftw cmake pkg-config libogg libvorbis lame libsndfile libsamplerate jack sdl libgig libsoundio stk fluid-synth portaudio fltk qt5 carla - run: name: Install nodejs dependencies