From bc7e7e511480df18200f48134a11e0a867dd8ce0 Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Tue, 6 Nov 2018 16:27:01 -0800 Subject: [PATCH] Remove ignore on GodepVersion and Godep comments --- hack/verify-godeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-godeps.sh b/hack/verify-godeps.sh index ae3b7fd4d93..2de2e6022c9 100755 --- a/hack/verify-godeps.sh +++ b/hack/verify-godeps.sh @@ -84,7 +84,7 @@ ret=0 pushd "${KUBE_ROOT}" > /dev/null 2>&1 # Test for diffs - if ! _out="$(diff -Naupr --ignore-matching-lines='^\s*\"GoVersion\":' --ignore-matching-line='^\s*\"GodepVersion\":' --ignore-matching-lines='^\s*\"Comment\":' Godeps/Godeps.json ${_kubetmp}/Godeps/Godeps.json)"; then + if ! _out="$(diff -Naupr --ignore-matching-lines='^\s*\"GoVersion\":' Godeps/Godeps.json ${_kubetmp}/Godeps/Godeps.json)"; then echo "Your Godeps.json is different:" >&2 echo "${_out}" >&2 echo "Godeps Verify failed." >&2