mirror of https://github.com/knative/client.git
Fix bogus warning in build.sh (#1064)
This commit is contained in:
parent
24e7f50dfb
commit
2c6a4c667e
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue