mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
Makefile: update dependencies
Prevent build failures which may occur when dependencies is not up to date by updating them with the go get -u flag. Add the go get -f flag as well, to override the check that each package has been checked out from the repo implied by its import path.
This commit is contained in:
parent
72109ecee1
commit
74775593d0
4
Makefile
4
Makefile
@ -13,8 +13,8 @@ cov:
|
|||||||
|
|
||||||
deps:
|
deps:
|
||||||
@echo "--> Installing build dependencies"
|
@echo "--> Installing build dependencies"
|
||||||
@go get -d -v ./...
|
@go get -d -f -u -v ./...
|
||||||
@echo $(DEPS) | xargs -n1 go get -d
|
@echo $(DEPS) | xargs -n1 go get -d -f -u
|
||||||
|
|
||||||
test: deps
|
test: deps
|
||||||
./scripts/verify_no_uuid.sh
|
./scripts/verify_no_uuid.sh
|
||||||
|
Loading…
x
Reference in New Issue
Block a user