fix
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
2025-08-05 17:39:02 -05:00
parent de3eec47a0
commit bea5e02c2e

View File

@@ -464,14 +464,14 @@ auto fuse_base::mount([[maybe_unused]] std::vector<std::string> orig_args,
fmt::format("{}.plist", label), fmt::format("{}.plist", label),
})) }))
.c_str()); .c_str());
res = system( ret = system(
fmt::format("launchctl kickstart gui/{}/{}", getuid(), label).c_str()); fmt::format("launchctl kickstart gui/{}/{}", getuid(), label).c_str());
if (res != 0) { if (ret != 0) {
std::cerr << fmt::format("Failed to kickstart {}/{}", getuid(), label) std::cerr << fmt::format("Failed to kickstart {}/{}", getuid(), label)
<< std::endl; << std::endl;
} }
return res; return ret;
} }
#endif // defined(__APPLE__) #endif // defined(__APPLE__)