From d69c978a7bb21f3a4409c3dda67a285ce59a121a Mon Sep 17 00:00:00 2001 From: machine424 Date: Wed, 5 Mar 2025 15:05:18 +0100 Subject: [PATCH] chore: remove no-op -d it go get Signed-off-by: machine424 --- Makefile | 2 +- Makefile.common | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 d1576bb313..691b48275c 100644 --- a/Makefile.common +++ b/Makefile.common @@ -138,7 +138,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