From 9cb4c63183e2a2ce1cd80fbae78079dcd1695770 Mon Sep 17 00:00:00 2001 From: Taylor Blau Date: Tue, 5 Feb 2019 18:58:35 -0800 Subject: [PATCH] .circleci: don't use 'brew prune' In the latest release of Homebrew (which Circle CI has upgraded to for us) the command `brew prune` has been removed. In order to stop failing our Circle CI builds, let's remove this invocation. The recommended alternative is to run 'brew cleanup', but this is unnecessary: Homebrew 2.0 already does this for us, so repeating it here is unnecessary. --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c8f97c4f..c2d41ba6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,6 @@ jobs: steps: - checkout - run: brew update - - run: brew prune - run: brew upgrade go || brew install go - run: brew upgrade git || brew install git - run: brew upgrade gettext || brew install gettext