| 37 | } |
| 38 | |
| 39 | std::string getEnvironmentVariable(const std::string& name) |
| 40 | { |
| 41 | auto result = getenv(name.c_str()); |
| 42 | return result == nullptr ? std::string() : result; |
| 43 | } |
| 44 | |
| 45 | #if !(defined(__APPLE__) && defined(__MACH__)) |
| 46 | static fs::path getHomeDirectory() |
no outgoing calls
no test coverage detected