This commit is contained in:
Evan Anderson 2020-04-09 18:04:04 -07:00 committed by GitHub
parent e8a4306a5d
commit cfae9520b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 3 deletions

19
Gopkg.lock generated
View File

@ -151,6 +151,18 @@
revision = "0b417c4ec4a8a82eecc22a1459a504aa55163d61"
version = "v1.4.0"
[[projects]]
branch = "master"
digest = "1:94088928b5646e3ae08050eb5e1fda3ee590001d7ddb812ce8b6a858a00155a9"
name = "github.com/knative/docs"
packages = [
"docs/serving/samples/grpc-ping-go/proto",
"test",
"test/sampleapp",
]
pruneopts = "NUT"
revision = "e8a4306a5d37d2ea18705dbd592ecf1fa9264191"
[[projects]]
digest = "1:5985ef4caf91ece5d54817c11ea25f182697534f8ae6521eadcd628c142ac4b6"
name = "github.com/matttproud/golang_protobuf_extensions"
@ -465,14 +477,14 @@
[[projects]]
branch = "master"
digest = "1:50482e6fd500cf50c4a29d640cda026206145c6716dff72e4368a5e57fdb7095"
digest = "1:dc73d65f40ea05b1d0db96ae5491b6ebc162bb59b3ac5a252cdf87848bc7a4b7"
name = "knative.dev/test-infra"
packages = [
"scripts",
"tools/dep-collector",
]
pruneopts = "UT"
revision = "9fa5882b65c5fe7e177bb74874e9a5ac87b84e98"
revision = "5e04d955cdb9a460b5d3f2a699bddcab22c8af94"
[solve-meta]
analyzer-name = "dep"
@ -487,6 +499,9 @@
"github.com/google/uuid",
"github.com/gorilla/mux",
"github.com/kelseyhightower/envconfig",
"github.com/knative/docs/docs/serving/samples/grpc-ping-go/proto",
"github.com/knative/docs/test",
"github.com/knative/docs/test/sampleapp",
"github.com/openzipkin/zipkin-go",
"github.com/openzipkin/zipkin-go/reporter/http",
"github.com/satori/go.uuid",

View File

@ -129,7 +129,7 @@ function markdown_build_tests() {
(( DISABLE_MD_LINTING && DISABLE_MD_LINK_CHECK )) && return 0
# Get changed markdown files (ignore /vendor, github templates, and deleted files)
local mdfiles=""
for file in $(echo "${CHANGED_FILES}" | grep \.md$ | grep -v ^vendor/ | grep -v ^.github/); do
for file in $(echo "${CHANGED_FILES}" | grep \\.md$ | grep -v ^vendor/ | grep -v ^.github/); do
[[ -f "${file}" ]] && mdfiles="${mdfiles} ${file}"
done
[[ -z "${mdfiles}" ]] && return 0