moved SSL configuration on OSX from Library/Barrier to Library/Application Support/Barrier as per the App Programming Guide. fixes #5

ref: https://developer.apple.com/library/content/documentation/General/Conceptual/MOSXAppProgrammingGuide/AppRuntime/AppRuntime.html
This commit is contained in:
walker0643 2018-02-16 12:29:47 -05:00
parent 28cb82bcb0
commit 07dad10251
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ ArchFileUnix::getProfileDirectory()
#if WINAPI_XWINDOWS
dir = getUserDirectory().append("/.barrier");
#else
dir = getUserDirectory().append("/Library/Barrier");
dir = getUserDirectory().append("/Library/Application Support/Barrier");
#endif
}
return dir;