diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-01-25 14:38:15 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-01-25 14:38:15 +0100 |
commit | b159d23800eec55412621a0b3e6c926a1dbb1755 (patch) | |
tree | 2d9e4b911548c7f1668bdd507a8757cd70658445 /src/nix/store.cc | |
parent | 488a826842296c9c2933fb53cc884ed8518f9110 (diff) |
Make '--help' do the same as 'help' (i.e. show a manpage)
Diffstat (limited to 'src/nix/store.cc')
-rw-r--r-- | src/nix/store.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/nix/store.cc b/src/nix/store.cc index e91bcc503..44e53c7c7 100644 --- a/src/nix/store.cc +++ b/src/nix/store.cc @@ -21,11 +21,6 @@ struct CmdStore : virtual NixMultiCommand command->second->prepare(); command->second->run(); } - - void printHelp(const string & programName, std::ostream & out) override - { - MultiCommand::printHelp(programName, out); - } }; static auto rCmdStore = registerCommand<CmdStore>("store"); |