2 Commits

Author SHA1 Message Date
David Tomaschik
3666115090 Add two grpc tools to install_tool 2026-08-18 14:53:00 -07:00
David Tomaschik
6f2494c602 Fix gitconfig includes 2026-08-18 14:18:30 -07:00
2 changed files with 15 additions and 0 deletions

View File

@@ -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

View File

@@ -96,6 +96,7 @@
[include]
path = ~/.gitconfig.d/aliases
path = ~/.gitconfig.d/google
path = ~/.gitconfig.d/override
path = ~/.gitconfig.d/local