diff options
author | eldritch horrors <pennae@lix.systems> | 2024-05-16 17:58:27 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-07-15 21:50:25 +0000 |
commit | 3447dbfb2c0f3bf7e31577bf2d5908b14ba59601 (patch) | |
tree | 909338dd54255cd14910a5a159b544c063781fa0 /src/libstore/local-fs-store.cc | |
parent | 5e16b10cb12a0c135683c148008df8cef0791df9 (diff) |
libstore: rewrite narFromPath as generator
Change-Id: Ifa783c2c65c06ddd1d0212016d5bfd07666ea91c
Diffstat (limited to 'src/libstore/local-fs-store.cc')
-rw-r--r-- | src/libstore/local-fs-store.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/local-fs-store.cc b/src/libstore/local-fs-store.cc index a16e0ba73..b5b1959be 100644 --- a/src/libstore/local-fs-store.cc +++ b/src/libstore/local-fs-store.cc @@ -78,11 +78,11 @@ ref<FSAccessor> LocalFSStore::getFSAccessor() std::dynamic_pointer_cast<LocalFSStore>(shared_from_this()))); } -void LocalFSStore::narFromPath(const StorePath & path, Sink & sink) +WireFormatGenerator LocalFSStore::narFromPath(const StorePath & path) { if (!isValidPath(path)) throw Error("path '%s' does not exist in store", printStorePath(path)); - sink << dumpPath(getRealStoreDir() + std::string(printStorePath(path), storeDir.size())); + return dumpPath(getRealStoreDir() + std::string(printStorePath(path), storeDir.size())); } const std::string LocalFSStore::drvsLogDir = "drvs"; |