Ignore internal packages for go 1.5; thanks @dlsniper

This commit is contained in:
Chris Bednarski 2015-07-30 16:15:55 -07:00
parent 28d1295460
commit 87bcfc3ef7

View file

@ -36,6 +36,7 @@ updatedeps:
go list ./... \
| xargs go list -f '{{join .Deps "\n"}}' \
| grep -v github.com/mitchellh/packer \
| grep -v '/internal/' \
| sort -u \
| xargs go get -f -u -v