Use $HOME variable if it exists #8

Merged
soutade merged 1 commits from ismail/libgourou:master into master 2024-09-22 10:56:09 +02:00

View File

@ -859,6 +859,12 @@ namespace gourou
std::string DRMProcessor::getDefaultAdeptDir(void)
{
#ifndef DEFAULT_ADEPT_DIR
const char* home = getenv("HOME");
if (home)
return home + std::string("/.config/adept/");
else
{
const char* user = getenv("USER");
if (user && user[0])
@ -867,6 +873,7 @@ namespace gourou
}
else
return LOCAL_ADEPT_DIR;
}
#else
return DEFAULT_ADEPT_DIR "/";
#endif