Merge pull request #8879 from protocolbuffers/fixSymlink

Fix recursive symlink error
pull/8887/head
deannagarcia 4 years ago committed by GitHub
commit 9675b28074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .bazelignore
  2. 2
      php/generate_test_protos.sh

@ -1,3 +1,4 @@
# These are fetched as external repositories.
third_party/benchmark
third_party/googletest
_build/

@ -10,7 +10,7 @@ else
# Bazel seems to be creating a problematic symlink in
# _build/out/external/com_google_protobuf, so we remove the _build directory
# before building protoc.
(cd .. && rm -rf _build && bazel build -c opt :protoc)
(cd .. && bazel build -c opt :protoc)
PROTOC=bazel-bin/protoc
fi

Loading…
Cancel
Save