Rename nix doctor to nix config check

Fix #7672
This commit is contained in:
Théophane Hufschmitt 2023-11-27 19:46:05 +01:00
parent f300e11b05
commit 6d1605818c
3 changed files with 4 additions and 3 deletions

View file

@ -87,7 +87,7 @@ impacted the most by bad user experience.
and [aligning of text](#text-alignment).
- [Autocomplete](#shell-completion) of options.
Examples of such commands: `nix doctor`, `nix edit`, `nix eval`, ...
Examples of such commands: `nix edit`, `nix eval`, ...
- **Utility and scripting commands**

View file

@ -38,7 +38,7 @@ void checkInfo(const std::string & msg) {
}
struct CmdDoctor : StoreCommand
struct CmdConfigCheck : StoreCommand
{
bool success = true;
@ -152,4 +152,4 @@ struct CmdDoctor : StoreCommand
}
};
static auto rCmdDoctor = registerCommand<CmdDoctor>("doctor");
static auto rCmdConfigCheck = registerCommand2<CmdConfigCheck>({ "config", "check" });

View file

@ -139,6 +139,7 @@ struct NixArgs : virtual MultiCommand, virtual MixCommonArgs, virtual RootArgs
{"to-base32", {"hash", "to-base32"}},
{"to-base64", {"hash", "to-base64"}},
{"verify", {"store", "verify"}},
{"doctor", {"config", "check"}},
};
bool aliasUsed = false;