From 2c6a4c667e84cfa6c9ee8233fd76e57135cc0d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20Hu=C3=9F?= Date: Thu, 15 Oct 2020 23:27:05 +0200 Subject: [PATCH] Fix bogus warning in build.sh (#1064) --- hack/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/build.sh b/hack/build.sh index 8aa1be8fd..ba6ad2633 100755 --- a/hack/build.sh +++ b/hack/build.sh @@ -192,8 +192,8 @@ check_license() { update_deps() { echo "🚒 Update" - go mod tidy - go mod vendor + go mod tidy 2>&1 | grep -v "ignoring symlink" || true + go mod vendor 2>&1 | grep -v "ignoring symlink" || true # Cleanup find "./vendor" \( -name "OWNERS" -o -name "*_test.go" \) -print0 | xargs -0 rm -f