From 69829277acc5d2e7b7657c1512ae5e445c020f47 Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Thu, 19 Jul 2018 11:11:36 -0700 Subject: [PATCH] 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. --- hack/verify-deps.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/verify-deps.sh b/hack/verify-deps.sh index ad9945b95..a7a8146e8 100755 --- a/hack/verify-deps.sh +++ b/hack/verify-deps.sh @@ -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