diff options
| author | Jeff Carr <[email protected]> | 2025-01-11 06:08:05 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-11 06:08:05 -0600 |
| commit | 0ea93faef25eda579e3c557b10ff98a766689e40 (patch) | |
| tree | ac8b51cd93ec8e68fa5ae9b9d3239672637cfa24 | |
| parent | 48b19f1e70331fc6213a2e3a179e8b18a26aaecc (diff) | |
can't use go:generate. boo. it requires go.mod and go.sumv0.0.46
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | init.go | 5 |
2 files changed, 2 insertions, 7 deletions
@@ -8,8 +8,8 @@ all: forgeConfig.pb.go patchset.pb.go goimports vet generate: clean - go-mod-clean - go generate + autogenpb --proto patchset.proto + autogenpb --proto forgeConfig.proto vet: @GO111MODULE=off go vet @@ -1,10 +1,5 @@ package forgepb -// go.wit.com/apps/autogenpb auto generates Sort() and Marshal() for protobuf files -//go:generate autogenpb --proto forgeConfig.proto -//go:generate autogenpb --proto uuid.proto -//go:generate autogenpb --proto patch.proto - import ( "os" "os/user" |
