diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-22T12·39+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-04-22T12·39+0200 |
commit | 456179018a669be5d041d07ced927ad72d3c15f0 (patch) | |
tree | d6caf693bf34616f5bdcf5b72866160d4dea3604 /src/nix/sigs.cc | |
parent | 95abf9c40266687b5525261bad964c6856a58f18 (diff) |
Fold "nix query-path-sigs" into "nix path-info"
Diffstat (limited to 'src/nix/sigs.cc')
-rw-r--r-- | src/nix/sigs.cc | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/nix/sigs.cc b/src/nix/sigs.cc index 6cff5a084dec..56f7d221363a 100644 --- a/src/nix/sigs.cc +++ b/src/nix/sigs.cc @@ -103,37 +103,6 @@ struct CmdCopySigs : StorePathsCommand static RegisterCommand r1(make_ref<CmdCopySigs>()); -struct CmdQueryPathSigs : StorePathsCommand -{ - CmdQueryPathSigs() - { - } - - std::string name() override - { - return "query-path-sigs"; - } - - std::string description() override - { - return "print store path signatures"; - } - - void run(ref<Store> store, Paths storePaths) override - { - for (auto & storePath : storePaths) { - auto info = store->queryPathInfo(storePath); - std::cout << storePath << " "; - if (info->ultimate) std::cout << "ultimate "; - for (auto & sig : info->sigs) - std::cout << sig << " "; - std::cout << "\n"; - } - } -}; - -static RegisterCommand r2(make_ref<CmdQueryPathSigs>()); - struct CmdSignPaths : StorePathsCommand { Path secretKeyFile; |