2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 15:04:56 +00:00

OS X now using POSIX-style file store

This commit is contained in:
Jack Andersen
2015-12-01 17:06:39 -10:00
parent 103e2a04cc
commit fff3100f17
2 changed files with 1 additions and 13 deletions

2
hecl/extern/libBoo vendored

Submodule hecl/extern/libBoo updated: c34b93f00f...cd4df5cb27

View File

@@ -27,18 +27,6 @@ FileStoreManager::FileStoreManager(const SystemString& domain)
HECL::MakeDir(path.c_str());
m_storeRoot = path;
#elif __APPLE__
const char* home = getenv("HOME");
if (!home)
Log.report(LogVisor::FatalError, "unable to locate $HOME for file store");
std::string path(home);
path += "/Library/Application Support/HECL Runtime";
if (mkdir(path.c_str(), 0755) && errno != EEXIST)
Log.report(LogVisor::FatalError, "unable to mkdir at %s", path.c_str());
path += '/' + domain;
if (mkdir(path.c_str(), 0755) && errno != EEXIST)
Log.report(LogVisor::FatalError, "unable to mkdir at %s", path.c_str());
m_storeRoot = path;
#else
const char* home = getenv("HOME");
if (!home)