Skip to content

Commit 5554e94

Browse files
committed
Updated docker.go
1 parent 2bb0648 commit 5554e94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ func (p Plugin) pushOnly() error {
10511051
} else {
10521052
// Tag the source image with the target name
10531053
fmt.Printf("Tagging %s as %s\n", sourceFullImageName, targetFullImageName)
1054-
tagCmd := commandTag(Build{Name: sourceFullImageName}, targetFullImageName)
1054+
tagCmd := exec.Command(dockerExe, "tag", sourceFullImageName, targetFullImageName)
10551055
tagCmd.Stdout = os.Stdout
10561056
tagCmd.Stderr = os.Stderr
10571057
trace(tagCmd)

0 commit comments

Comments
 (0)