fix: scope CAS package indices to index of package

Fixes conflicts between multiple packages with the
same name in different indices.
This commit is contained in:
daimond113 2025-01-18 15:14:58 +01:00
parent a2ce747879
commit 0dfc3ef5bd
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 2 additions and 0 deletions

View file

@ -197,6 +197,7 @@ impl PackageSource for PesdePackageSource {
let index_file = project
.cas_dir()
.join("index")
.join(hash(self.as_bytes()))
.join(id.name().escaped())
.join(id.version_id().version().to_string())
.join(id.version_id().target().to_string());

View file

@ -229,6 +229,7 @@ impl PackageSource for WallyPackageSource {
let index_file = project
.cas_dir()
.join("wally_index")
.join(hash(self.as_bytes()))
.join(id.name().escaped())
.join(id.version_id().version().to_string());