Fix bogus warning in build.sh (#1064)

This commit is contained in:
Roland Huß 2020-10-15 23:27:05 +02:00 committed by GitHub
parent 24e7f50dfb
commit 2c6a4c667e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -192,8 +192,8 @@ check_license() {
update_deps() { update_deps() {
echo "🚒 Update" echo "🚒 Update"
go mod tidy go mod tidy 2>&1 | grep -v "ignoring symlink" || true
go mod vendor go mod vendor 2>&1 | grep -v "ignoring symlink" || true
# Cleanup # Cleanup
find "./vendor" \( -name "OWNERS" -o -name "*_test.go" \) -print0 | xargs -0 rm -f find "./vendor" \( -name "OWNERS" -o -name "*_test.go" \) -print0 | xargs -0 rm -f