1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-09-16 09:26:52 +02:00

fixed log msg

This commit is contained in:
Carlos Alexandro Becker
2017-09-14 21:35:11 -03:00
parent a2f1e8ca12
commit ab1acbb897

View File

@@ -107,7 +107,7 @@ func dockerBuild(root, dockerfile, image string) error {
}
func dockerTag(image, tag string) error {
log.WithField("image", image).WithField("tag", tag).Info("building docker image")
log.WithField("image", image).WithField("tag", tag).Info("tagging docker image")
var cmd = exec.Command("docker", "tag", image, tag)
log.WithField("cmd", cmd).Debug("executing")
out, err := cmd.CombinedOutput()