diff --git a/README.md b/README.md index 93998d6..24f8e9a 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Use the following command to build and run the executable target. ```bash cmake -Hbytra -Bbuild/bytra cmake --build build/bytra -./build/bytra/Bytra +./build/bytra/Bytra --help ``` ### Build and run test suite diff --git a/bytra/source/main.cpp b/bytra/source/main.cpp index c6469e1..b238a85 100644 --- a/bytra/source/main.cpp +++ b/bytra/source/main.cpp @@ -38,8 +38,6 @@ int main(int argc, char **argv) { std::cout << " / /_/ / / / / / / _, _// ___ |" << std::endl; std::cout << "/_____/ /_/ /_/ /_/ |_|/_/ |_| Made by Arne." << std::endl << std::endl; - std::cout << "Setting up BYTRA" << std::endl; - // CLI setup CLI::App app("BYTRA"); std::string strategy; @@ -54,6 +52,7 @@ int main(int argc, char **argv) { // Register signal and signal handler signal(SIGINT, signal_callback_handler); + std::cout << "Setting up BYTRA" << std::endl; std::cout << " - Logging setup" << std::flush; // spdlog setup