diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-02-02 12:28:56 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-02-02 12:28:56 +0100 |
commit | 7bcc9f2aaf87a08a7570610f45e99754fd74d3f6 (patch) | |
tree | bc6c7346e730783bf1da15d99ce26247cc94668e /src/libstore/derivations.cc | |
parent | 958ec5de568904a07ef050418088d882cbf2ea61 (diff) |
Add convenience overload for toRealPath()
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r-- | src/libstore/derivations.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index d9da8769c..a554cb66d 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -354,7 +354,7 @@ Hash hashDerivationModulo(Store & store, const Derivation & drv, bool maskOutput if (h == drvHashes.end()) { assert(store.isValidPath(i.first)); h = drvHashes.insert_or_assign(i.first.clone(), hashDerivationModulo(store, - readDerivation(store, store.toRealPath(store.printStorePath(i.first))), false)).first; + readDerivation(store, store.toRealPath(i.first)), false)).first; } inputs2.insert_or_assign(h->second.to_string(Base16, false), i.second); } |