fixed appending registry before the repo

This commit is contained in:
Zhomart Mukhamejanov 2016-08-25 23:58:51 -07:00
parent 7da2f28bf6
commit cca6052fab
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ func (p Plugin) Exec() error {
// this code attempts to normalize the repository name by appending the fully
// qualified registry name if otherwise omitted.
if p.Login.Registry != defaultRegistry &&
strings.HasPrefix(p.Build.Repo, defaultRegistry) {
!strings.HasPrefix(p.Build.Repo, p.Login.Registry) {
p.Build.Repo = p.Login.Registry + "/" + p.Build.Repo
}