Fix lint error

pull/7362/head
Thomas Stromberg 2020-04-01 14:44:57 -07:00
parent af8fdc650a
commit 478de7b4a9
1 changed files with 2 additions and 2 deletions

View File

@ -219,8 +219,8 @@ func CacheAndLoadImages(images []string) error {
}
}
glog.Infof("succeeded pushing to: ", strings.Join(succeeded, " "))
glog.Infof("failed pushing to: ", strings.Join(failed, " "))
glog.Infof("succeeded pushing to: %s", strings.Join(succeeded, " "))
glog.Infof("failed pushing to: %s", strings.Join(failed, " "))
// Live pushes are not considered a failure
return nil
}