Put newlines back

This commit is contained in:
Koen Schmeets 2016-06-18 22:38:38 +02:00
parent 4971855b4d
commit 87e0bec62f
1 changed files with 2 additions and 0 deletions

View File

@ -95,8 +95,10 @@ func (p Plugin) Exec() error {
cmds = append(cmds, commandVersion()) // docker version
cmds = append(cmds, commandInfo()) // docker info
cmds = append(cmds, commandBuild(p.Build)) // docker build
for _, tag := range p.Build.Tags {
cmds = append(cmds, commandTag(p.Build, tag)) // docker tag
if p.Dryrun == false {
cmds = append(cmds, commandPush(p.Build, tag)) // docker push
}