mirror of
https://github.com/ModOrganizer2/mob.git
synced 2026-07-27 14:07:05 -07:00
prepend python to path when building usvfs, udis requires it
install certifi, prebuilt python fails with ssl errors when downloading
This commit is contained in:
@@ -352,21 +352,6 @@ std::string replace_all(
|
||||
return s;
|
||||
}
|
||||
|
||||
std::string join(const std::vector<std::string>& v, const std::string& sep)
|
||||
{
|
||||
std::string s;
|
||||
|
||||
for (auto&& e : v)
|
||||
{
|
||||
if (!s.empty())
|
||||
s += sep;
|
||||
|
||||
s += e;
|
||||
}
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
std::vector<std::string> split(const std::string& s, const std::string& seps)
|
||||
{
|
||||
std::vector<std::string> v;
|
||||
|
||||
Reference in New Issue
Block a user