diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T13·27+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-11-14T13·28+0100 |
commit | c8155e9f5fba14c4edc8c5763fb7d7e9d4d123a9 (patch) | |
tree | aa9167ff30b154cdb77a2b07609c81e3f6524801 /src/nix/path-info.cc | |
parent | bac8055652964d9ad5202011befb6b199463ddef (diff) |
Don't indent JSON output
Diffstat (limited to 'src/nix/path-info.cc')
-rw-r--r-- | src/nix/path-info.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc index ca02a4c929be..47caa401d3c9 100644 --- a/src/nix/path-info.cc +++ b/src/nix/path-info.cc @@ -65,7 +65,7 @@ struct CmdPathInfo : StorePathsCommand, MixJSON pathLen = std::max(pathLen, storePath.size()); if (json) { - JSONPlaceholder jsonRoot(std::cout, true); + JSONPlaceholder jsonRoot(std::cout); store->pathInfoToJSON(jsonRoot, // FIXME: preserve order? PathSet(storePaths.begin(), storePaths.end()), |