File: install_deps.sh

package info (click to toggle)
trillian 1.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,600 kB
  • sloc: sh: 1,181; javascript: 474; sql: 330; makefile: 39
file content (15 lines) | stat: -rwxr-xr-x 418 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#
# Installs the dependencies required to build this repo.
set -eu

main() {
  go install github.com/golang/mock/mockgen
  go install google.golang.org/protobuf/proto
  go install google.golang.org/protobuf/cmd/protoc-gen-go
  go install google.golang.org/grpc/cmd/protoc-gen-go-grpc
  go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc
  go install golang.org/x/tools/cmd/stringer
}

main