diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T13·31+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T13·31+0100 |
commit | 4db0a9555e3b39600847084e1b40e0bb935c13de (patch) | |
tree | 494236487cc8c250394cd9e25b7fefa6f257d40f /src/libstore/binary-cache-store.cc | |
parent | c8155e9f5fba14c4edc8c5763fb7d7e9d4d123a9 (diff) |
nix ls-{nar,store} --json: Respect -R
Diffstat (limited to 'src/libstore/binary-cache-store.cc')
-rw-r--r-- | src/libstore/binary-cache-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/binary-cache-store.cc b/src/libstore/binary-cache-store.cc index 9c6424a496e6..93caba67ea94 100644 --- a/src/libstore/binary-cache-store.cc +++ b/src/libstore/binary-cache-store.cc @@ -121,7 +121,7 @@ void BinaryCacheStore::addToStore(const ValidPathInfo & info, const ref<std::str { auto res = jsonRoot.placeholder("root"); - listNar(res, narAccessor, ""); + listNar(res, narAccessor, "", true); } } |