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:
2
hecl/extern/libBoo
vendored
2
hecl/extern/libBoo
vendored
Submodule hecl/extern/libBoo updated: c34b93f00f...cd4df5cb27
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user