Skip to content
This repository has been archived by the owner on Sep 3, 2020. It is now read-only.

Commit

Permalink
add ./vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 13, 2017
1 parent 4eaa2a2 commit f8709f6
Show file tree
Hide file tree
Showing 4 changed files with 252 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
examples/go/main
cov.out
node_modules
vendor/
176 changes: 176 additions & 0 deletions Gopkg.lock

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

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

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
branch = "master"
name = "github.com/Unknwon/goconfig"

[[constraint]]
name = "github.com/apex/log"
version = "1.0.0"

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

[[constraint]]
branch = "master"
name = "github.com/golang-commonmark/markdown"

[[constraint]]
name = "github.com/mattn/go-isatty"
version = "0.0.3"

[[constraint]]
branch = "master"
name = "github.com/mitchellh/go-homedir"

[[constraint]]
branch = "master"
name = "github.com/mitchellh/go-wordwrap"

[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"

[[constraint]]
name = "github.com/rliebling/gitignorer"
version = "1.0.1"

[[constraint]]
branch = "master"
name = "github.com/tj/cobra"

[[constraint]]
name = "github.com/tj/go-prompt"
version = "1.3.0"

[[constraint]]
branch = "master"
name = "github.com/tj/pflag"

[[constraint]]
branch = "v2"
name = "gopkg.in/validator.v2"
2 changes: 1 addition & 1 deletion utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/sts"
"github.com/mitchellh/go-homedir"
"github.com/rliebling/gitignorer"
gitignorer "github.com/rliebling/gitignorer"
)

// Sha256 returns a base64 encoded SHA256 hash of `b`.
Expand Down

0 comments on commit f8709f6

Please sign in to comment.