Skip to content

Commit f380fad

Browse files
authored
task: improve sdk update make target (#2248)
1 parent e180805 commit f380fad

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ devtools: ## Install dev tools
5252
go install golang.org/x/tools/cmd/goimports@latest
5353
go install github.com/google/go-licenses@latest
5454
go install mvdan.cc/sh/v3/cmd/shfmt@latest
55+
go install github.com/icholy/gomajor@latest
5556
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin $(GOLANGCI_VERSION)
5657

5758
.PHONY: setup
@@ -192,11 +193,12 @@ check-library-owners: ## Check that all the dependencies in go.mod has a owner i
192193

193194
.PHONY: update-atlas-sdk
194195
update-atlas-sdk: ## Update the atlas-sdk dependency
195-
go install github.com/icholy/gomajor@latest
196+
@echo "==> Updating SDK to latest major version"
196197
gomajor get go.mongodb.org/atlas-sdk/v20230201001@latest
198+
go mod tidy
199+
@echo "==> Done, remember to update build/ci/library_owners.json"
197200

198201
.PHONY: help
199202
.DEFAULT_GOAL := help
200203
help:
201204
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
202-

0 commit comments

Comments
 (0)