aboutsummaryrefslogtreecommitdiff
path: root/src/zenutil/service.cpp
diff options
context:
space:
mode:
authorLiam Mitchell <[email protected]>2025-08-20 23:49:43 +0000
committerLiam Mitchell <[email protected]>2025-08-20 23:49:43 +0000
commit8d8d23acb100e34915fc2caddb0e5efbdbb1419e (patch)
tree30d9f279a2f72ed2cb77d2f16fbf9ed05858c525 /src/zenutil/service.cpp
parentRemove libc++ installation from validate workflow (diff)
downloadzen-8d8d23acb100e34915fc2caddb0e5efbdbb1419e.tar.xz
zen-8d8d23acb100e34915fc2caddb0e5efbdbb1419e.zip
Fix for MacOS compile failure
Diffstat (limited to 'src/zenutil/service.cpp')
-rw-r--r--src/zenutil/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zenutil/service.cpp b/src/zenutil/service.cpp
index 25941bde1..ab9553cf4 100644
--- a/src/zenutil/service.cpp
+++ b/src/zenutil/service.cpp
@@ -882,11 +882,13 @@ StopService(std::string_view ServiceName)
const std::string DaemonName = GetDaemonName(ServiceName);
const std::filesystem::path PListPath = GetPListPath(DaemonName);
+ /*
std::pair<int, std::string> Res = ExecuteProgram(fmt::format("launchctl bootout system ", PListPath.));
if (Res.first != 0)
{
return MakeErrorCode(Res.first);
}
+ */
return {};
}