diff options
author | Taeer Bar-Yam <taeer.bar-yam@tweag.io> | 2022-12-15 15:58:54 -0500 |
---|---|---|
committer | Taeer Bar-Yam <taeer.bar-yam@tweag.io> | 2022-12-15 15:58:54 -0500 |
commit | e5eb05c5990d837e0bbc1529e3b5b167f7015be0 (patch) | |
tree | 13207eadab614619b336fb9079ec0086f62d102e /src/libstore/binary-cache-store.hh | |
parent | 3b27181ee54176aba2cdff98028586048e08e74d (diff) |
getBuildLog: factor out resolving derivations
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r-- | src/libstore/binary-cache-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh index 8c82e2387..abd92a83c 100644 --- a/src/libstore/binary-cache-store.hh +++ b/src/libstore/binary-cache-store.hh @@ -129,7 +129,7 @@ public: void addSignatures(const StorePath & storePath, const StringSet & sigs) override; - std::optional<std::string> getBuildLog(const StorePath & path) override; + std::optional<std::string> getBuildLogExact(const StorePath & path) override; void addBuildLog(const StorePath & drvPath, std::string_view log) override; |