Skip to content

Commit

Permalink
add manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
blxdyx committed Dec 4, 2024
1 parent 19c0e33 commit 9089e61
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/downloader/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,14 @@ func manifest(ctx context.Context, logger log.Logger) error {
}
files = append(files, "idx/"+fName)
}
l, _ = dir.ListFiles(dirs.SnapAccessors, extList...)
for _, fPath := range l {
_, fName := filepath.Split(fPath)
if strings.Contains(fName, "commitment") {
continue
}
files = append(files, "accessor/"+fName)
}

sort.Strings(files)
for _, f := range files {
Expand Down

0 comments on commit 9089e61

Please sign in to comment.