diff options
| author | Jeff Carr <[email protected]> | 2024-11-15 17:25:11 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-15 17:25:11 -0600 |
| commit | 5ef3669e7d35d6b281e2c4b5972fa9958c30f74c (patch) | |
| tree | 1553423b3495b218e9bd5536f98e04bc0e9c0993 /Makefile | |
| parent | eacbb1fb7af28656b269b8bdc287f67a88e4f233 (diff) | |
stub in sort function
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -5,7 +5,7 @@ # go install -all: repository.pb.go +all: package.pb.go make -C example vet: lint @@ -29,10 +29,10 @@ clean: -rm -f go.* make -C example clean -repository.pb.go: repository.proto +package.pb.go: package.proto # protoc --go_out=. droplet.proto # This is switched over to use the new protoc-gen-go from google.golang.org/protobuf/cmd/protoc-gen-go # the debian one (2024/10/21) seems to be the older/original one from github.com/golang/protobuf/protoc-gen-go - cd ~/go/src && protoc --go_out=. --proto_path=go.wit.com/lib/protobuf/gitpb \ - --go_opt=Mrepository.proto=go.wit.com/lib/protobuf/gitpb \ - repository.proto + cd ~/go/src && protoc --go_out=. --proto_path=go.wit.com/lib/protobuf/zoopb \ + --go_opt=Mpackage.proto=go.wit.com/lib/protobuf/zoopb \ + package.proto |
