Files
weave-scope/vendor
Marc Carré 9c43419488 Remove nested sirupsen/logrus dependency
```
$ rm -fr vendor/github.com/weaveworks/weave/vendor/github.com/sirupsen
```
fixed:
```
	"github.com/weaveworks/scope/vendor/github.com/weaveworks/weave/vendor/github.com/sirupsen/logrus".Formatter does not implement "github.com/weaveworks/scope/vendor/github.com/sirupsen/logrus".Formatter (wrong type for Format method)
		have Format(*"github.com/weaveworks/scope/vendor/github.com/weaveworks/weave/vendor/github.com/sirupsen/logrus".Entry) ([]byte, error)
		want Format(*"github.com/weaveworks/scope/vendor/github.com/sirupsen/logrus".Entry) ([]byte, error)
```
2018-07-23 20:10:19 +02:00
..
2016-06-21 09:25:44 +01:00

Managing Vendored Dependencies with gvt

These operations result in uncommitted changes to your branch; you will need to commit them as normal. Execute them in the root of your checkout.

For these changes to take effect, you'll have to make clean before running make.

Installing gvt

$ go get -u github.com/FiloSottile/gvt

Adding a Dependency

~/service$ gvt fetch example.com/organisation/module

Updating a Dependency

~/service$ gvt update example.com/organisation/module

Removing a Dependency

~/service$ gvt delete example.com/organisation/module