Merge pull request #4767 from NixOS/fix-s3-ca-caching

Fix the double-slash in the realisations path
This commit is contained in:
Eelco Dolstra
2021-05-04 15:38:52 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ private:
protected:
// The prefix under which realisation infos will be stored
const std::string realisationsPrefix = "/realisations";
const std::string realisationsPrefix = "realisations";
BinaryCacheStore(const Params & params);

View File

@@ -93,7 +93,7 @@ protected:
void LocalBinaryCacheStore::init()
{
createDirs(binaryCacheDir + "/nar");
createDirs(binaryCacheDir + realisationsPrefix);
createDirs(binaryCacheDir + "/" + realisationsPrefix);
if (writeDebugInfo)
createDirs(binaryCacheDir + "/debuginfo");
BinaryCacheStore::init();