vndr icon indicating copy to clipboard operation
vndr copied to clipboard

Stupid vendoring tool

Results 16 vndr issues
Sort by recently updated
recently updated
newest added

looks like https://github.com/LK4D4/vndr/pull/97 doesn't like to be installed with the local source if no go module is available; guess it doesn't hurt to have one

This is more of a question rather than an issue. Currently, when an import path isn't vendored and also doesn't exist in GOPATH or GOROOT, `vndr` would typically exit with...

relates to https://github.com/moby/moby/pull/42798 The vendor.conf allows passing a custom URL to download the dependency, however, the import-path may still be used to detect the repository "root" (for versioned imports). In...

If both a "versioned" and "non-versioned" version of a dependency exists in vendor.conf, the "longest" path should be cloned last, otherwise the versioned dependency may be deleted when cloning its...

```console $ cat foo.go package foo import ( "github.com/containerd/cgroups/v2" ) func Foo(a, b string) (*v2.Manager, error) { return v2.LoadManager(a, b) } $ vndr init ``` Result: ``` github.com/containerd/cgroups/v2 3f83850c48d225466698517ad34f4848d2ddaeeb github.com/containerd/cgroups/stats/v1...

Sometimes a standard package from a particular Go release introduces a regression which can be fixed by using a modified copy of it. So, it would be nice to have...

Rerunning vndr on containerd with the latest version picked up a lot of extra stuff, I think because of #69/#70. Is this expected or is it going further than was...

I noticed that a project (`moby/buildkit` as it happens) was missing a dependency (you can see it [here](https://travis-ci.org/moby/buildkit/builds/350437382#L2248)). I patched the check (`./hack/validate-vendor` and `hack/dockerfiles/vendor.Dockerfile`) thinking it would cause the...

Dot imports are ignored, reproduce with test below: main ```go package main import ( "fmt" . "github.com/onsi/ginkgo" ) func main() { fmt.Println("bug") } ``` vendor.conf ``` github.com/onsi/ginkgo master ``` @LK4D4...

It would be great to add a guide of migrating from godeps to vndr cc @LK4D4