diff options
| author | Jeff Carr <[email protected]> | 2025-01-09 12:55:03 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-09 12:55:03 -0600 |
| commit | e725c0cc8011ab6d2c418f83d9b86c7897fabef4 (patch) | |
| tree | 4cdfcf2fb3cd0eab89e0e2720690d65481deb98c | |
| parent | e79ba634661baba562fa0ab9245040bd37c29f4c (diff) | |
changed to example/
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -6,3 +6,4 @@ go.sum /work/* autogenpb* testfiles/testfiles +example/example @@ -29,12 +29,12 @@ auto: rm -f auto.sort.pb.go auto.newsort.pb.go # auto.marshal.pb.go test: - make -C testfiles full + make -C example full junk: - cd testfiles; rm -f go.* *.pb.go - cd testfiles; ../autogenpb --proto auto.proto --package yellow - cd testfiles; GO111MODULE=off go vet + cd example; rm -f go.* *.pb.go + cd example; ../autogenpb --proto auto.proto --package yellow + cd example; GO111MODULE=off go vet goimports: goimports -w *.go |
