Makefile: remove '-d' flag from 'go get', since this flag is deprecated

See https://go.dev/doc/go-get-install-deprecation
This commit is contained in:
Aliaksandr Valialkin 2024-09-08 20:06:30 +02:00
parent 4fbdde5852
commit 563a50b547
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -467,8 +467,8 @@ benchmark-pure:
CGO_ENABLED=0 go test -bench=. ./app/...
vendor-update:
go get -u -d ./lib/...
go get -u -d ./app/...
go get -u ./lib/...
go get -u ./app/...
go mod tidy -compat=1.22
go mod vendor