refactor(loader): set default av display name to dnot.sh

This commit is contained in:
es3n1n
2025-05-27 13:16:27 +02:00
parent 7a48447498
commit a137fd5d5b
3 changed files with 3 additions and 2 deletions

View File

@@ -97,7 +97,7 @@ int main(int argc, char* argv[]) try {
.action([&fatal_print](const auto& /*unused*/) -> void { fatal_print(std::format("{}-loader v{}", names::kProjectName, names::kVersion)); });
/// defendnot-loader parameters:
program.add_argument("-n", "--name").help("av display name").default_value(std::string(names::kRepoUrl)).nargs(1);
program.add_argument("-n", "--name").help("av display name").default_value(std::string(names::kDefaultAVName)).nargs(1);
program.add_argument("-d", "--disable").help(std::format("disable {}", names::kProjectName)).default_value(false).implicit_value(true);
program.add_argument("-v", "--verbose").help("verbose logging").default_value(false).implicit_value(true);
program.add_argument("--silent").help("do not allocate console").default_value(false).implicit_value(true);