Cleanup glide (#1353)

* Cleanup mentions about glide

* Don't use glide to ignore vendor directory

Since go-1.9, "./..." no longer contains the "vendor" directory.
Also, since #1305 migrated dependency management from glide to go mod,
there is no need to think about the "vendor" directory.

See: https://golang.org/doc/go1.9#vendor-dotdotdot

* go mod tidy
This commit is contained in:
namusyaka
2020-11-08 23:21:51 +08:00
committed by GitHub
parent 25036e1b22
commit 8fcbc60969
7 changed files with 12 additions and 169 deletions
+1 -1
View File
@@ -25,4 +25,4 @@ Note: Code-related PR's require one ACK / LGTM from a maintainer or core contrib
### Adding dependencies
If your patch depends on new packages, add that package with [`glide`](https://github.com/Masterminds/glide). Follow the [instructions to add a dependency](https://github.com/kubernetes/kompose/blob/master/docs/development.md#glide-glide-vc-and-dependency-management).
If your patch depends on new packages, make sure that both `go.mod` and `go.sum` are updated properly. Also we recommend you to execute `go mod tidy` before sending a pull request.