diff options
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 3d10b3387ed5..532d511ef8bf 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1418,7 +1418,7 @@ Path LocalStore::addToStore(const string & name, const Path & _srcPath, small files. */ StringSink sink; if (recursive) - dumpPath(srcPath, sink, filter); + nix::dumpPath(srcPath, sink, filter); else sink.s = make_ref<std::string>(readFile(srcPath)); |