refactoring: renamed repo/block to repo/content

Also introduced strongly typed content.ID and manifest.ID (instead of string)

This aligns identifiers across all layers of repository:

blob.ID
content.ID
object.ID
manifest.ID
This commit is contained in:
Jarek Kowalski
2019-06-01 20:11:40 -07:00
parent 916da07e0f
commit 54edb97b3a
100 changed files with 2692 additions and 2658 deletions

View File

@@ -21,7 +21,7 @@ func runCacheInfoCommand(ctx context.Context, rep *repo.Repository) error {
}
log.Debugf("scanning cache...")
fileCount, totalFileSize, err := scanCacheDir(filepath.Join(rep.CacheDirectory, "blocks"))
fileCount, totalFileSize, err := scanCacheDir(filepath.Join(rep.CacheDirectory, "contents"))
if err != nil {
return err
}