Cosmetic changes.
This commit is contained in:
parent
a941bcced3
commit
8c8a19b86b
|
@ -101,16 +101,16 @@ po::variables_map parse_options(int argc, char *argv[])
|
||||||
|
|
||||||
fs::path get_config_path()
|
fs::path get_config_path()
|
||||||
{
|
{
|
||||||
auto get_env = [](std::string const &name)
|
const auto get_env{[](const std::string &name)
|
||||||
{
|
{
|
||||||
const char *env = std::getenv(name.c_str());
|
const char *env = std::getenv(name.c_str());
|
||||||
if (env != nullptr)
|
if (env != nullptr)
|
||||||
{
|
{
|
||||||
return env;
|
return env;
|
||||||
}
|
}
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
};
|
}};
|
||||||
|
|
||||||
fs::path path{get_env("XDG_CONFIG_HOME")};
|
fs::path path{get_env("XDG_CONFIG_HOME")};
|
||||||
if (path.empty())
|
if (path.empty())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user