Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from gvt to dep #262

Merged
merged 1 commit into from
Oct 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ dist
public
docs/content

_vendor-*

/out

# Snapcraft
Expand Down
242 changes: 242 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 60 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@

[[constraint]]
name = "github.com/blang/semver"
version = "3.1.0"

[[constraint]]
name = "github.com/digitalocean/godo"
revision = "801cee9569723107654606a8e00d79b56470072e"

[[constraint]]
name = "github.com/dustin/go-humanize"

[[constraint]]
name = "github.com/fatih/color"

[[constraint]]
name = "github.com/gobwas/glob"

[[constraint]]
branch = "master"
name = "github.com/mitchellh/ioprogress"

[[constraint]]
name = "github.com/natefinch/pie"

[[constraint]]
name = "github.com/pborman/uuid"

[[constraint]]
branch = "master"
name = "github.com/shiena/ansicolor"

[[constraint]]
name = "github.com/spf13/afero"

[[constraint]]
name = "github.com/spf13/cobra"

[[constraint]]
name = "github.com/spf13/jwalterweatherman"

[[constraint]]
name = "github.com/spf13/viper"

[[constraint]]
name = "github.com/stretchr/testify"

[[constraint]]
name = "github.com/davecgh/go-spew"
version = "v1.1.0"

[[constraint]]
name = "golang.org/x/crypto"

[[constraint]]
name = "golang.org/x/oauth2"

[[constraint]]
branch = "v2"
name = "gopkg.in/yaml.v2"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ By default, it assumes you are using the `root` user. If you want to SSH as a sp

## Building and dependencies

`doctl`'s dependencies are managed by [gvt](https://github.com/FiloSottile/gvt). To add dependencies, use `gvt fetch`.
`doctl`'s dependencies are managed with [`dep`](https://github.com/golang/dep). To add dependencies, use [`dep ensure -add github.com/foo/bar`](https://github.com/golang/dep#adding-a-dependency)

## Releasing

Expand Down
21 changes: 0 additions & 21 deletions vendor/github.com/Azure/go-ansiterm/LICENSE

This file was deleted.

Loading