We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49aef8a commit 56c9604Copy full SHA for 56c9604
Makefile
@@ -135,8 +135,11 @@ mod-tidy:
135
136
mod-check:
137
@$(call print, "Checking modules.")
138
- $(GOMOD) tidy
139
- if test -n "$$(git status | grep -e "go.mod\|go.sum")"; then echo "Running go mod tidy changes go.mod/go.sum"; git status; git diff; exit 1; fi
+ GOPROXY=direct $(GOMOD) tidy
+ cd swapserverrpc/ && GOPROXY=direct $(GOMOD) tidy
140
+ cd looprpc/ && GOPROXY=direct $(GOMOD) tidy
141
+ cd tools/ && GOPROXY=direct $(GOMOD) tidy
142
+ if test -n "$$(git status --porcelain)"; then echo "Running go mod tidy changes go.mod/go.sum"; git status; git diff; exit 1; fi
143
144
sqlc:
145
@$(call print, "Generating sql models and queries in Go")
0 commit comments