diff options
| author | Liam Mitchell <[email protected]> | 2025-08-20 23:49:43 +0000 |
|---|---|---|
| committer | Liam Mitchell <[email protected]> | 2025-08-20 23:49:43 +0000 |
| commit | 8d8d23acb100e34915fc2caddb0e5efbdbb1419e (patch) | |
| tree | 30d9f279a2f72ed2cb77d2f16fbf9ed05858c525 /src | |
| parent | Remove libc++ installation from validate workflow (diff) | |
| download | zen-8d8d23acb100e34915fc2caddb0e5efbdbb1419e.tar.xz zen-8d8d23acb100e34915fc2caddb0e5efbdbb1419e.zip | |
Fix for MacOS compile failure
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenutil/service.cpp | 2 |
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 {}; } |