systemctl helper #596

Merged
meggert merged 5 commits from feature_systemctl_helper into develop 2023-04-14 08:25:10 +02:00
Showing only changes of commit c5b26eade4 - Show all commits

View File

@ -1339,7 +1339,7 @@ void CoreController::performMountedSdCardOperations() {
auto mountedSdCardOp = [&](sd::SdCard sdCard, std::string mntPoint) {
if (not performOneShotSdCardOpsSwitch) {
std::ostringstream path;
path << mntPoint << "/" << CONF_FOLDER;
path << mntPoint << "/" << core::CONF_FOLDER;
std::error_code e;
if (not std::filesystem::exists(path.str()), e) {
bool created = std::filesystem::create_directory(path.str(), e);