aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-11-30 14:25:15 +0100
committerGitHub <noreply@github.com>2022-11-30 14:25:15 +0100
commitf91dc023f27ea17362274fcdf30e362423b080f8 (patch)
treed76deb2455fe8ac9e02be76554168ef96446d0af /src
parent0596bdf3a9a42e73c68584da1401781a0e888f09 (diff)
parent0b092bd87f35e463fea66ddd40639e7b260680a0 (diff)
Merge pull request #7372 from edolstra/fix-json
nix store make-content-addressed: Fix JSON construction
Diffstat (limited to 'src')
-rw-r--r--src/nix/make-content-addressed.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/make-content-addressed.cc b/src/nix/make-content-addressed.cc
index f2e4cefbe..f236bebd6 100644
--- a/src/nix/make-content-addressed.cc
+++ b/src/nix/make-content-addressed.cc
@@ -43,7 +43,7 @@ struct CmdMakeContentAddressed : virtual CopyCommand, virtual StorePathsCommand,
assert(i != remappings.end());
jsonRewrites[srcStore->printStorePath(path)] = srcStore->printStorePath(i->second);
}
- std::cout << json::object({"rewrites", jsonRewrites}).dump();
+ std::cout << nlohmann::json{"rewrites", jsonRewrites}.dump();
} else {
for (auto & path : storePaths) {
auto i = remappings.find(path);