Browse Source

verbose output when get_deps

pull/418/head
Anton Kaliaev 7 years ago
parent
commit
d38a6e329f
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      Makefile

+ 3
- 2
Makefile View File

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


Loading…
Cancel
Save