Skip to content

Commit

Permalink
Merge pull request #5865 from justinsb/remove_underscore_vendor
Browse files Browse the repository at this point in the history
Remove last vestiges of _vendor directory
  • Loading branch information
k8s-ci-robot authored Oct 3, 2018
2 parents 3fe0287 + 4378015 commit df0e63b
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 278 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ check-markdown-links:
-e LANG=en_US.UTF-8 \
-e LANGUAGE=en_US.UTF-8 \
rubygem/awesome_bot --allow-dupe --allow-redirect \
$(shell find $$PWD -name "*.md" -mindepth 1 -printf '%P\n' | grep -v vendor | grep -v _vendor | grep -v Changelog.md)
$(shell find $$PWD -name "*.md" -mindepth 1 -printf '%P\n' | grep -v vendor | grep -v Changelog.md)

#-----------------------------------------------------------
# kube-discovery
Expand Down
13 changes: 0 additions & 13 deletions _vendor/bitbucket.org/ww/goautoneg/Makefile

This file was deleted.

67 changes: 0 additions & 67 deletions _vendor/bitbucket.org/ww/goautoneg/README.txt

This file was deleted.

162 changes: 0 additions & 162 deletions _vendor/bitbucket.org/ww/goautoneg/autoneg.go

This file was deleted.

33 changes: 0 additions & 33 deletions _vendor/bitbucket.org/ww/goautoneg/autoneg_test.go

This file was deleted.

1 change: 0 additions & 1 deletion hack/dep.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,5 @@
print("[[override]]")
print(' name = "%s"' % (dep))
print(' revision = "%s"' % (godep_sha))
#print("pushd _vendor/{dep}; git fetch; git checkout {sha}; popd".format(dep=dep, sha=godep_sha))
else:
print("# UNKNOWN dep %s" % dep)
2 changes: 1 addition & 1 deletion hack/verify-spelling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ GOBIN="${OUTPUT_GOBIN}" go install ./vendor/github.com/client9/misspell/cmd/miss
mkdir -p .build/docs
find . -type f \( -name "*.go*" -o -name "*.md*" \) -a -path "./docs/releases/*" -exec basename {} \; | \
xargs -I{} sh -c 'sed -e "/^\* .*github.com\/kubernetes\/kops\/pull/d" docs/releases/{} > .build/docs/$(basename {})'
find . -type f \( -name "*.go*" -o -name "*.md*" \) -a \( -not -path "./vendor/*" -not -path "./_vendor/*" -not -path "./docs/releases/*" \) | \
find . -type f \( -name "*.go*" -o -name "*.md*" \) -a \( -not -path "./vendor/*" -not -path "./docs/releases/*" \) | \
sed -e /README-ES.md/d -e /node_modules/d |
xargs ${OUTPUT_GOBIN}/misspell -error

Expand Down

0 comments on commit df0e63b

Please sign in to comment.