fix build error

pull/7702/head
Medya Gh 2020-04-15 17:46:35 -07:00
parent 786b78f390
commit e4ac2f6d98
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ func WriteImageToDaemon(img string) error {
glog.V(3).Infof("Pulling image %v", ref)
// Pull digest
cmd = exec.Command("docker", "pull", "--quiet", img)
cmd := exec.Command("docker", "pull", "--quiet", img)
if _, err := cmd.Output(); err != nil {
return errors.Wrap(err, "pulling remote image")
}