You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(GO_BUILD_OPTS) go build -ldflags $(GO_LDFLAGS) -gcflags="$(GO_GCFLAGS)" -o $(BUILDDIR)/entrypoint cmd/main.go
110
+
111
+
.PHONY: check-go-modules
112
+
check-go-modules: generate-go-modules
113
+
git diff --quiet HEAD go.sum;if [ $$?-eq 1 ] ;thenecho"go.sum is out of date. Please commit after running 'make generate-go-modules' command";exit 1;fi
0 commit comments