feat: Update 4 files
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 59s
Build-Test-Publish / build (linux/arm64) (push) Successful in 1m40s

This commit is contained in:
2025-10-08 17:57:00 +13:00
parent 709937bc61
commit e9a6998761
4 changed files with 39 additions and 24 deletions

View File

@@ -10,7 +10,7 @@
#include "config.hpp"
#include <iostream>
#include <memory>
//#include <memory>
#include <filesystem>
#include <fstream>
#include <sys/wait.h>
@@ -476,7 +476,7 @@ namespace dropshell
if (server_existing_dir.empty())
return false;
if (std::filesystem::exists(server_existing_dir));
if (std::filesystem::exists(server_existing_dir))
return true;
return false;
}