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/local-fs-store.hh | |
parent | 3b27181ee54176aba2cdff98028586048e08e74d (diff) |
getBuildLog: factor out resolving derivations
Diffstat (limited to 'src/libstore/local-fs-store.hh')
-rw-r--r-- | src/libstore/local-fs-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-fs-store.hh b/src/libstore/local-fs-store.hh index e6fb3201a..947707341 100644 --- a/src/libstore/local-fs-store.hh +++ b/src/libstore/local-fs-store.hh @@ -50,7 +50,7 @@ public: return getRealStoreDir() + "/" + std::string(storePath, storeDir.size() + 1); } - std::optional<std::string> getBuildLog(const StorePath & path) override; + std::optional<std::string> getBuildLogExact(const StorePath & path) override; }; |