File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ devtools: ## Install dev tools
52
52
go install golang.org/x/tools/cmd/goimports@latest
53
53
go install github.com/google/go-licenses@latest
54
54
go install mvdan.cc/sh/v3/cmd/shfmt@latest
55
+ go install github.com/icholy/gomajor@latest
55
56
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH) /bin $(GOLANGCI_VERSION )
56
57
57
58
.PHONY : setup
@@ -192,11 +193,12 @@ check-library-owners: ## Check that all the dependencies in go.mod has a owner i
192
193
193
194
.PHONY : update-atlas-sdk
194
195
update-atlas-sdk : # # Update the atlas-sdk dependency
195
- go install github.com/icholy/gomajor@ latest
196
+ @echo " ==> Updating SDK to latest major version "
196
197
gomajor get go.mongodb.org/atlas-sdk/v20230201001@latest
198
+ go mod tidy
199
+ @echo " ==> Done, remember to update build/ci/library_owners.json"
197
200
198
201
.PHONY : help
199
202
.DEFAULT_GOAL := help
200
203
help :
201
204
@grep -h -E ' ^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
202
-
You can’t perform that action at this time.
0 commit comments