diff --git a/src/cli.cpp b/src/cli.cpp index 2688e3a..6536754 100644 --- a/src/cli.cpp +++ b/src/cli.cpp @@ -71,7 +71,7 @@ static void print_status(aklite::cli::StatusCode ret) { // Possible return codes for install command case aklite::cli::StatusCode::InstallAppsNeedFinalization: - std::cout << "SUCCESS: Execute `custom-sota-client run` command to finalize installation"; + std::cout << "SUCCESS: Execute `sotactl run` command to finalize installation"; break; case aklite::cli::StatusCode::InstallNeedsRebootForBootFw: std::cout << "FAILURE: Reboot is required before installing the target"; diff --git a/src/main.cpp b/src/main.cpp index e2d054f..84ddf0d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -16,7 +16,7 @@ static std::vector cmds{ }; static void print_usage() { - std::cout << "Usage:\n\t custom-sota-client [cmd] [options]\nSupported commands: "; + std::cout << "Usage:\n\t sotactl [cmd] [options]\nSupported commands: "; for (const auto& cmd : cmds) { std::cout << cmd->name() << " "; } @@ -61,7 +61,7 @@ int main(int argc, char** argv) { } auto print_usage = [](const std::string& cmd, const std::vector& pos_opts, const po::options_description& opts) { - std::cout << "custom-sota-client " << cmd; + std::cout << "sotactl " << cmd; for (const auto& option : pos_opts) { std::cout << " [" + option + "]"; }