Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/generate_proto.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def generate_init_file(output_dir: Path) -> None:
def find_brew_protobuf_include(project_root: Path) -> str:
"""Find the protobuf include directory, preferring downloaded protoc 29.1, then brew installations."""
# First, check if we have downloaded protoc 29.1 and use its include directory
protoc_29_1_bin = project_root / "bin" / "protoc-29.1"
protoc_29_1_bin = project_root / ".bin" / "protoc-29.1"
if protoc_29_1_bin.exists():
# The downloaded protoc includes the well-known types in the zip
# We'll use the local include directory as fallback
Expand Down
Loading