We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a23809 commit f6cdcdbCopy full SHA for f6cdcdb
Makefile
@@ -138,6 +138,16 @@ go.sum: go.mod
138
### Documentation ###
139
###############################################################################
140
141
+update-swagger-docs: statik
142
+ $(BINDIR)/statik -src=docs/client/swagger-ui -dest=docs/client -f -m
143
+ @if [ -n "$(git status --porcelain)" ]; then \
144
+ echo "\033[91mSwagger docs are out of sync!!!\033[0m";\
145
+ exit 1;\
146
+ else \
147
+ echo "\033[92mSwagger docs are in sync\033[0m";\
148
+ fi
149
+.PHONY: update-swagger-docs
150
+
151
godocs:
152
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/cosmos/cosmos-sdk/types"
153
godoc -http=:6060
0 commit comments