aboutsummaryrefslogtreecommitdiff
path: root/src/nix/path-info.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-01 19:26:40 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-01 19:26:40 -0400
commit754c910953901ced4fbd27a8b86d36d57cb72996 (patch)
tree027bcf260d6dff50e17a8a18ac4428e2590c3287 /src/nix/path-info.cc
parentda39092a39bbcca80144041b5efc8428cc3b2e4a (diff)
WIP more progress
Diffstat (limited to 'src/nix/path-info.cc')
-rw-r--r--src/nix/path-info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc
index 91d62bcec..ffe07a3ee 100644
--- a/src/nix/path-info.cc
+++ b/src/nix/path-info.cc
@@ -115,7 +115,7 @@ struct CmdPathInfo : StorePathsCommand, MixJSON
std::cout << '\t';
Strings ss;
if (info->ultimate) ss.push_back("ultimate");
- if (info->ca != "") ss.push_back("ca:" + info->ca);
+ if (info->ca != "") ss.push_back("ca:" + renderContentAddress(*info->ca));
for (auto & sig : info->sigs) ss.push_back(sig);
std::cout << concatStringsSep(" ", ss);
}