Merge pull request #3173 from adamwg/catalog-no-layers-upstream
catalog: List repositories with no unique layers
This commit is contained in:
commit
35b26def43
1 changed files with 2 additions and 2 deletions
|
@ -143,8 +143,8 @@ func handleRepository(fileInfo driver.FileInfo, root, last string, fn func(repoP
|
|||
repo := filePath[len(root)+1:]
|
||||
|
||||
_, file := path.Split(repo)
|
||||
if file == "_layers" {
|
||||
repo = strings.TrimSuffix(repo, "/_layers")
|
||||
if file == "_manifests" {
|
||||
repo = strings.TrimSuffix(repo, "/_manifests")
|
||||
if lessPath(last, repo) {
|
||||
if err := fn(repo); err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue