Skip to content

Commit

Permalink
Use correct destination repository and tag when uploading final manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlavin committed Apr 25, 2017
1 parent adb6170 commit b0a258d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func main() {
}
}

err = destHub.PutManifest("sample-tracker", "latest", manifest)
err = destHub.PutManifest(*destArgs.Repository, *destArgs.Tag, manifest)
if err != nil {
fmt.Printf("Failed to upload manifest to %s/%s:%s. %v", destHub.URL, *destArgs.Repository, *destArgs.Tag, err)
exitCode = -1
Expand Down

0 comments on commit b0a258d

Please sign in to comment.