fix asserts
Some checks failed
Blockstorage/repertory/pipeline/head There was a failure building this commit
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-19 08:47:45 -05:00
parent cd82118a20
commit c4ce61ba20

View File

@@ -144,11 +144,12 @@ struct platform_ops {
return ".\\repertory.exe " + args_joined;
#else // !defined(_WIN32)
#if defined(__APPLE__)
constexpr const char *kBin = "./repertory.app/Contents/MacOS/repertory ";
constexpr std::string_view repertory_bin =
"./repertory.app/Contents/MacOS/repertory ";
#else // !defined(__APPLE__)
constexpr const char *kBin = "./repertory ";
constexpr std::string_view repertory_bin = "./repertory ";
#endif // defined(__APPLE__)
return std::string(kBin) + args_joined;
return std::string(repertory_bin) + args_joined;
#endif // defined(_WIN32)
}