From 65f86885aa18fda4358521fe2bb1e4f5dd049821 Mon Sep 17 00:00:00 2001 From: deannagarcia <69992229+deannagarcia@users.noreply.github.com> Date: Tue, 4 Oct 2022 12:18:10 -0700 Subject: [PATCH] Force uninstall protobuf in python macos builds We are seeing failures in brew uninstall protobuf due to no package. Change this to a force install to avoid the error. --- kokoro/release/python/macos/build_artifacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kokoro/release/python/macos/build_artifacts.sh b/kokoro/release/python/macos/build_artifacts.sh index 296bd9aef3..d79d2f6b40 100755 --- a/kokoro/release/python/macos/build_artifacts.sh +++ b/kokoro/release/python/macos/build_artifacts.sh @@ -3,7 +3,7 @@ set -ex # Remove any pre-existing protobuf installation. -brew uninstall protobuf +brew uninstall -f protobuf # change to repo root pushd $(dirname $0)/../../../..