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:
parent
28cb82bcb0
commit
07dad10251
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue