Files
odo/pkg/registry/errors.go
Parthvi Vala dce95d62e2 Add preference add and remove commands (#5873)
* Add add, and remove commands

Signed-off-by: Parthvi Vala <pvala@redhat.com>

* Remove add and delete files

* Move cli/preference/registry/util.go > registry/utils.go

* Update tests, and documentation

* Move cli/preference/registry/consts/consts.go > segment/segment.go

* Fix test failures

Signed-off-by: Parthvi Vala <pvala@redhat.com>

* Rebase changes

Signed-off-by: Parthvi Vala <pvala@redhat.com>

* Remove old references

* Fix docs post-rebase

Signed-off-by: Parthvi Vala <pvala@redhat.com>

* Fix typo
2022-06-28 11:33:47 +00:00

9 lines
265 B
Go

package registry
type ErrGithubRegistryNotSupported struct {
}
func (s *ErrGithubRegistryNotSupported) Error() string {
return "github based registries are no longer supported, use OCI based registries instead, see https://github.com/devfile/registry-support"
}