diff --git a/Makefile b/Makefile index 0b5935de00..beff8c4a80 100644 --- a/Makefile +++ b/Makefile @@ -189,6 +189,6 @@ update-all-go-deps: @$(MAKE) update-go-deps @echo ">> updating Go dependencies in ./documentation/examples/remote_storage/" @cd ./documentation/examples/remote_storage/ && for m in $$($(GO) list -mod=readonly -m -f '{{ if and (not .Indirect) (not .Main)}}{{.Path}}{{end}}' all); do \ - $(GO) get -d $$m; \ + $(GO) get $$m; \ done @cd ./documentation/examples/remote_storage/ && $(GO) mod tidy diff --git a/Makefile.common b/Makefile.common index 4de21512ff..6f61bec48f 100644 --- a/Makefile.common +++ b/Makefile.common @@ -139,7 +139,7 @@ common-deps: update-go-deps: @echo ">> updating Go dependencies" @for m in $$($(GO) list -mod=readonly -m -f '{{ if and (not .Indirect) (not .Main)}}{{.Path}}{{end}}' all); do \ - $(GO) get -d $$m; \ + $(GO) get $$m; \ done $(GO) mod tidy