verbose output when get_deps

This commit is contained in:
Anton Kaliaev 2017-02-24 13:30:46 +04:00
parent f73f53c486
commit d38a6e329f
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 3 additions and 2 deletions

View File

@ -45,10 +45,11 @@ list_deps:
xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}' xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
get_deps: get_deps:
@go get -d $(PACKAGES) @echo "--> Running go get"
@go get -v -d $(PACKAGES)
@go list -f '{{join .TestImports "\n"}}' ./... | \ @go list -f '{{join .TestImports "\n"}}' ./... | \
grep -v /vendor/ | sort | uniq | \ grep -v /vendor/ | sort | uniq | \
xargs go get -d xargs go get -v -d
get_vendor_deps: ensure_tools get_vendor_deps: ensure_tools
@rm -rf vendor/ @rm -rf vendor/