Compile fix

This commit is contained in:
Phillip Stephens 2020-03-03 16:52:57 -08:00
parent 2149af68fa
commit 3d0451a496
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ FileStoreManager::FileStoreManager(SystemStringView domain) : m_domain(domain) {
if (!home)
Log.report(logvisor::Fatal, fmt("unable to locate $HOME for file store"));
path = home;
path += "/.local/share"
path += "/.local/share";
}
path += "/hecl";
if (mkdir(path.c_str(), 0755) && errno != EEXIST)