fix: comment from verify config PR (#1823)

PR here: https://github.com/XRPLF/clio/pull/1814#
This commit is contained in:
Peter Chen
2025-01-13 12:58:20 -05:00
committed by GitHub
parent 9659d98140
commit c47b96bc68
4 changed files with 12 additions and 11 deletions

View File

@@ -42,7 +42,7 @@ try {
[](app::CliArgs::Action::Exit const& exit) { return exit.exitCode; },
[](app::CliArgs::Action::VerifyConfig const& verify) {
if (app::verifyConfig(verify.configPath)) {
std::cout << "Config is correct" << "\n";
std::cout << "Config " << verify.configPath << " is correct" << "\n";
return EXIT_SUCCESS;
}
return EXIT_FAILURE;