Update default profile folder path for macOS

Adjusted the default profile folder path in the OrcaSlicer profile validator for macOS to ensure correct resource access, as Multi configure is now set as the default.
This commit is contained in:
SoftFever 2025-08-12 20:07:54 +08:00
parent 90b59ff7d6
commit 3d2b332c01

View file

@ -88,7 +88,7 @@ int main(int argc, char* argv[])
// clang-format off
desc.add_options()("help,h", "help")
#ifdef __APPLE__
("path,p", po::value<std::string>()->default_value("../../../../../../resources/profiles"), "profile folder")
("path,p", po::value<std::string>()->default_value("../../../../../../../resources/profiles"), "profile folder")
#else
("path,p", po::value<std::string>()->default_value("../../../resources/profiles"), "profile folder")
#endif