Disabled raspios CI + added start of noise reduction code

This commit is contained in:
AlexandreRouma
2021-11-28 03:17:08 +01:00
parent b148fc8a28
commit 2daaf00cb3
3 changed files with 20 additions and 19 deletions

View File

@ -119,7 +119,7 @@ int sdrpp_main(int argc, char *argv[]) {
// Check root directory
if (!std::filesystem::exists(options::opts.root)) {
spdlog::warn("Root directory {0} does not exist, creating it", options::opts.root);
if (!std::filesystem::create_directory(options::opts.root)) {
if (!std::filesystem::create_directories(options::opts.root)) {
spdlog::error("Could not create root directory {0}", options::opts.root);
return -1;
}