Updateing for go-vcs to vcs name change.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fb870c9..06716e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,7 +10,7 @@
no vendor directory. Use the --no-recursive flag to skip this.
- Removed GOPATH management. This was needed for vendor package
management that's not built into the go toolchain.
-- Switched to github.com/Masterminds/go-vcs for VCS integration.
+- Switched to github.com/Masterminds/vcs for VCS integration.
- When updating packages are now deleted if the --delete flag is set.
This feature is now opt-in.
diff --git a/Makefile b/Makefile
index ceea647..a8e3cc6 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@
bootstrap:
mkdir ./vendor
git clone https://github.com/Masterminds/cookoo vendor/github.com/Masterminds/cookoo
- git clone https://github.com/Masterminds/go-vcs vendor/github.com/Masterminds/go-vcs
+ git clone https://github.com/Masterminds/vcs vendor/github.com/Masterminds/vcs
git clone https://github.com/kylelemons/go-gypsy vendor/github.com/kylelemons/go-gypsy
git clone https://github.com/codegangsta/cli vendor/github.com/codegangsta/cli
diff --git a/README.md b/README.md
index 4398842..2ecb6aa 100644
--- a/README.md
+++ b/README.md
@@ -234,14 +234,14 @@
## Supported Version Control Systems
The Git, SVN, Mercurial (Hg), and Bzr source control systems are supported. This
-happens through the [vcs package](https://github.com/masterminds/go-vcs).
+happens through the [vcs package](https://github.com/masterminds/vcs).
## Troubleshooting
**Q: bzr (or hg) is not working the way I expected. Why?**
These are works in progress, and may need some additional tuning. Please
-take a look at the [vcs package](https://github.com/masterminds/go-vcs). If you
+take a look at the [vcs package](https://github.com/masterminds/vcs). If you
see a better way to handle it please let us know.
**Q: Should I check `vendor/` into version control?**
diff --git a/cmd/get_imports.go b/cmd/get_imports.go
index 1e0b740..8929522 100644
--- a/cmd/get_imports.go
+++ b/cmd/get_imports.go
@@ -10,7 +10,7 @@
"strings"
"github.com/Masterminds/cookoo"
- v "github.com/Masterminds/go-vcs"
+ v "github.com/Masterminds/vcs"
)
func init() {
diff --git a/cmd/yaml.go b/cmd/yaml.go
index 628af42..9a51c04 100644
--- a/cmd/yaml.go
+++ b/cmd/yaml.go
@@ -8,7 +8,7 @@
"strings"
"github.com/Masterminds/cookoo"
- v "github.com/Masterminds/go-vcs"
+ v "github.com/Masterminds/vcs"
"github.com/kylelemons/go-gypsy/yaml"
)
diff --git a/glide.yaml b/glide.yaml
index 17ee835..4d4de47 100644
--- a/glide.yaml
+++ b/glide.yaml
@@ -9,5 +9,5 @@
vcs: git
subpackages:
- .
- - package: github.com/Masterminds/go-vcs
+ - package: github.com/Masterminds/vcs
- package: github.com/codegangsta/cli