mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* 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
9 lines
265 B
Go
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"
|
|
}
|