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.
pull/10715/head
deannagarcia 3 years ago committed by GitHub
parent a181d020f7
commit 65f86885aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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)/../../../..

Loading…
Cancel
Save