Skip to content

Commit

Permalink
Extend ko.local and kind.local detection to include sub-repos
Browse files Browse the repository at this point in the history
  • Loading branch information
imjasonh committed Aug 22, 2022
1 parent 2c58e4a commit 3c96e97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/commands/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func makePublisher(po *options.PublishOptions) (publish.Interface, error) {
innerPublisher, err := func() (publish.Interface, error) {
repoName := po.DockerRepo
namer := options.MakeNamer(po)
if repoName == publish.LocalDomain || po.Local {
if strings.HasPrefix(repoName, publish.LocalDomain) || po.Local {
// TODO(jonjohnsonjr): I'm assuming that nobody will
// use local with other publishers, but that might
// not be true.
Expand All @@ -177,7 +177,7 @@ func makePublisher(po *options.PublishOptions) (publish.Interface, error) {
publish.WithLocalDomain(po.LocalDomain),
)
}
if repoName == publish.KindDomain {
if strings.HasPrefix(repoName, publish.KindDomain) {
return publish.NewKindPublisher(namer, po.Tags), nil
}

Expand Down

0 comments on commit 3c96e97

Please sign in to comment.