diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-03-01 16:57:36 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-04-07 08:34:58 -0400 |
commit | 4e9f32f993aaa9f7995919e480e0e920d946184d (patch) | |
tree | d8947a5032185b7e9ecbfb5e2740a784416a7155 /src/libstore/local-store.hh | |
parent | b200784cec056da53378eb043cae4fad188e4e6f (diff) |
Liberate `checkDerivationOutputs` from `LocalStore`
Make it instead a method on `Derivation` that can work with any store.
We will need this for a CLI command to create a derivation.
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 6deaa051f..7e0849961 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -270,8 +270,6 @@ private: std::pair<Path, AutoCloseFD> createTempDirInStore(); - void checkDerivationOutputs(const StorePath & drvPath, const Derivation & drv); - typedef std::unordered_set<ino_t> InodeHash; InodeHash loadInodeHash(); |