diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-12-23 11:55:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 11:55:52 +0100 |
commit | 8927cba62f5afb33b01016d5c4f7f8b7d0adde3c (patch) | |
tree | fb971c52e2bd6e610fbec688b74de1e78cb03b4d /src/libstore/remote-fs-accessor.hh | |
parent | f4a9fb67da5bc55221be451556710dfacb39eda0 (diff) | |
parent | 7080321618e29033a8b5dc2f9fc938dcf2df270d (diff) |
Merge pull request #4366 from NixOS/readInvalidDerivation-on-remote-caches
Use the fs accessor for readInvalidDerivation
Diffstat (limited to 'src/libstore/remote-fs-accessor.hh')
-rw-r--r-- | src/libstore/remote-fs-accessor.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/remote-fs-accessor.hh b/src/libstore/remote-fs-accessor.hh index 347cf5764..594852d0e 100644 --- a/src/libstore/remote-fs-accessor.hh +++ b/src/libstore/remote-fs-accessor.hh @@ -14,7 +14,7 @@ class RemoteFSAccessor : public FSAccessor Path cacheDir; - std::pair<ref<FSAccessor>, Path> fetch(const Path & path_); + std::pair<ref<FSAccessor>, Path> fetch(const Path & path_, bool requireValidPath = true); friend class BinaryCacheStore; @@ -32,7 +32,7 @@ public: StringSet readDirectory(const Path & path) override; - std::string readFile(const Path & path) override; + std::string readFile(const Path & path, bool requireValidPath = true) override; std::string readLink(const Path & path) override; }; |