Update updatedeps
This commit is contained in:
parent
a1f1834789
commit
6f7818980c
8
Makefile
8
Makefile
|
@ -31,7 +31,13 @@ testrace:
|
|||
go test -race $(TEST) $(TESTARGS)
|
||||
|
||||
updatedeps:
|
||||
go get -u -d -v -p 2 ./...
|
||||
go get -u github.com/mitchellh/gox
|
||||
go get -u golang.org/x/tools/cmd/stringer
|
||||
go list ./... \
|
||||
| xargs go list -f '{{join .Deps "\n"}}' \
|
||||
| grep -v github.com/mitchellh/packer \
|
||||
| sort -u \
|
||||
| xargs go get -f -u -v
|
||||
|
||||
vet:
|
||||
@go tool vet 2>/dev/null ; if [ $$? -eq 3 ]; then \
|
||||
|
|
Loading…
Reference in New Issue