Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

vendor: Add missing package dependencies #54

Merged
merged 3 commits into from
Feb 23, 2018
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions Gopkg.lock

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

5 changes: 5 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,8 @@
[[constraint]]
name = "github.com/hashicorp/yamux"
revision = "f5742cb6"

[prune]
non-go = true
go-tests = true
unused-packages = true
2 changes: 1 addition & 1 deletion proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func printAgentLogs(sock string) error {
}

func setupNotifier() chan os.Signal {
sigCh := make(chan os.Signal)
sigCh := make(chan os.Signal, 8)
signal.Notify(sigCh, termSignal)

return sigCh
Expand Down
2 changes: 1 addition & 1 deletion proxy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func client(proxyAddr, file string) error {
}
sum1 = fmt.Sprintf("%x", h.Sum(nil))

_, err = f.Seek(0, os.SEEK_SET)
_, err = f.Seek(0, io.SeekStart)
if err != nil {
return err
}
Expand Down
15 changes: 15 additions & 0 deletions vendor/github.com/davecgh/go-spew/LICENSE

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

152 changes: 152 additions & 0 deletions vendor/github.com/davecgh/go-spew/spew/bypass.go

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

38 changes: 38 additions & 0 deletions vendor/github.com/davecgh/go-spew/spew/bypasssafe.go

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

Loading