unknwon 00a3e368b4 vendor: update to fix tests with Go 1.12.x 5 éve
..
github.com 00a3e368b4 vendor: update to fix tests with Go 1.12.x 5 éve
golang.org 600f748cb0 vendor: update golang.org/x/crypto/ssh 8 éve
gopkg.in c82ac420fc vendor: update 6 éve
README 2fd69f13d9 vendor: check in vendors 8 éve
vendor.json 00a3e368b4 vendor: update to fix tests with Go 1.12.x 5 éve

README

1. Delete package directory from vendor when developing new code of dependency.
2. After commit on dependency, run:
govendor update
3. Introduce a new dependency, run:
govendor add +vendor
4. To update all deependencies, delete all packages from vendor, and run:
govendor add +vendor +external
5. Too hard.