From d4635477bc7f1457174ec1fd2a32951ca6844c2d Mon Sep 17 00:00:00 2001 From: Carolyn Van Slyck Date: Fri, 11 Aug 2017 13:33:50 -0500 Subject: [PATCH] Add vndr as a supported tool --- cmd/dep/init.go | 4 +++- docs/FAQ.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cmd/dep/init.go b/cmd/dep/init.go index 1afab53d66..d49ef58b98 100644 --- a/cmd/dep/init.go +++ b/cmd/dep/init.go @@ -26,7 +26,9 @@ specified, use the current directory. When configuration for another dependency management tool is detected, it is imported into the initial manifest and lock. Use the -skip-tools flag to -disable this behavior. The following external tools are supported: glide, godep. +disable this behavior. The following external tools are supported: +glide, godep, vndr. + Any dependencies that are not constrained by external configuration use the GOPATH analysis below. diff --git a/docs/FAQ.md b/docs/FAQ.md index d5cc988466..895a0a5d7c 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -194,7 +194,7 @@ about what's going on. During `dep init` configuration from other dependency managers is detected and imported, unless `-skip-tools` is specified. -The following tools are supported: `glide` and `godep`. +The following tools are supported: `glide`, `godep` and `vndr`. See [#186](https://github.com/golang/dep/issues/186#issuecomment-306363441) for how to add support for another tool.