From 1ce4ba6c9f381f7931615644675b0cad33e74492 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Mon, 3 Jun 2013 15:33:29 +0000 Subject: [PATCH] remove check on login --- commands.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/commands.go b/commands.go index 9f3168ac06..ddb2c1a52b 100644 --- a/commands.go +++ b/commands.go @@ -739,12 +739,6 @@ func (cli *DockerCli) CmdPull(args ...string) error { remote = remoteParts[0] } - if strings.Contains(remote, "/") { - if _, err := cli.checkIfLogged(true, "pull"); err != nil { - return err - } - } - v := url.Values{} v.Set("fromImage", remote) v.Set("tag", *tag)