hack/verify: also include 'dep version' output

If "dep status" fails on CI, it's useful to know what version of dep is
being used to locally reproduce and examine the issue.
This commit is contained in:
Euan Kemp 2018-07-19 11:11:36 -07:00
parent 840f9de7d9
commit 69829277ac

View File

@ -22,6 +22,8 @@ SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")/..
pushd "${SCRIPT_ROOT}"
echo "+++ Checking Gopkg.lock is up-to-date"
dep version
echo ""
dep status
popd