Linear issue with full context here.[[ https://linear.app/comm/issue/ENG-1262/grpc-docs-use-wget-command-which-isnt-installed | here ]]. The current gRPC docs make use of the `wget` command to install protobuf from GitHub, but `wget` is not pre-installed on macOS.
Replaced `wget` with `curl -L`, The current gRPC docs makewhich //is// guaranteed to be installed since the `brew install` command above the `wget` command installs `curl`:
use of the `wget` command to install protobuf from GitHub, but `wget` is
not pre-installed on macOS. Replaced `wget` with `curl -L`.{F73888}