Switch to go modules instead of go dep

This commit is contained in:
Thomas Boerger
2019-01-21 01:22:48 +01:00
parent e6289388c4
commit 17dc3bc6be
6 changed files with 47 additions and 108 deletions

View File

@@ -172,7 +172,7 @@ func commandLogin(login Login) *exec.Cmd {
// helper to check if args match "docker pull <image>"
func isCommandPull(args []string) bool {
return len(args) > 2 && args[1] == "pull"
return len(args) > 2 && args[1] == "pull"
}
func commandPull(repo string) *exec.Cmd {