Migrate from dep to go modules
When working on !35 (merged) I wanted to be able to check out the code independently from my $GOPATH
.
I used the following to migrate to go modules with no dependency changes (except the removal of non-go files in the vendored packages)
rm -rf vendor/*
go mod init github.com/docker/docker-machine
go mod vendor
I understand this project is on life support but since this is a straightforward quality of life improvement that should be instantly mergeable, I felt it was ok.