summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--init.go5
2 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 79ebccd..d012f7a 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/init.go b/init.go
index c58629d..29c8fe1 100644
--- a/init.go
+++ b/init.go
@@ -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"