Skip to content
Snippets Groups Projects
Commit c149c54e authored by Kateryna Kostiuk's avatar Kateryna Kostiuk Committed by Andreas Traczyk
Browse files

macOS: disable path expansion


Disable path expansion for macOS because it does not work for sandboxed
version.

Change-Id: I66bb4ef515228ac84f60328b6fb773ff3adac0a3
Reviewed-by: default avatarAndreas Traczyk <andreas.traczyk@savoirfairelinux.com>
parent 0506b3a8
Branches
No related tags found
No related merge requests found
...@@ -177,7 +177,7 @@ create_pidfile() ...@@ -177,7 +177,7 @@ create_pidfile()
std::string std::string
expand_path(const std::string &path) expand_path(const std::string &path)
{ {
#if defined __ANDROID__ || defined RING_UWP || defined WIN32 || (defined(TARGET_OS_IOS) && TARGET_OS_IOS) #if defined __ANDROID__ || defined RING_UWP || defined WIN32 || defined __APPLE__
RING_ERR("Path expansion not implemented, returning original"); RING_ERR("Path expansion not implemented, returning original");
return path; return path;
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment