From 366611509068505e1beef35cf8c5e295afbbfac5 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 18 Aug 2026 14:53:00 -0700 Subject: [PATCH] Add two grpc tools to install_tool --- bin/install_tool | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bin/install_tool b/bin/install_tool index 8f67c1e..56cc4e1 100755 --- a/bin/install_tool +++ b/bin/install_tool @@ -576,6 +576,20 @@ EOF chmod +x "${DESTDIR}/ssh-agent-mux" add_bin_symlink ssh-agent-mux ;; + grpcurl) + if command -v brew >/dev/null 2>&1; then + brew install grpcurl + else + go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest + fi + ;; + grpcui) + if command -v brew >/dev/null 2>&1; then + brew install grpcui + else + go install github.com/fullstorydev/grpcui/cmd/grpcui@latest + fi + ;; *) echo "Unknown tool: ${TOOL}" >/dev/stderr list_tools