mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
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:
parent
4fbdde5852
commit
563a50b547
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -467,8 +467,8 @@ benchmark-pure:
|
||||||
CGO_ENABLED=0 go test -bench=. ./app/...
|
CGO_ENABLED=0 go test -bench=. ./app/...
|
||||||
|
|
||||||
vendor-update:
|
vendor-update:
|
||||||
go get -u -d ./lib/...
|
go get -u ./lib/...
|
||||||
go get -u -d ./app/...
|
go get -u ./app/...
|
||||||
go mod tidy -compat=1.22
|
go mod tidy -compat=1.22
|
||||||
go mod vendor
|
go mod vendor
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue